Skip to content

Commit

Permalink
build: add unix link folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Nov 24, 2023
1 parent 6349597 commit 7ba288d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ elseif(WITH_FREERTOS_PLUS_TCP)
list(APPEND Sources ${Sources_Freertos_Plus_TCP})
elseif(CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_SYSTEM_NAME MATCHES "Darwin" OR CMAKE_SYSTEM_NAME MATCHES "BSD" OR POSIX_COMPATIBLE)
file (GLOB Sources_Unix "src/system/unix/*.c")
list(APPEND Sources ${Sources_Unix})
file (GLOB Link_Unix "src/system/unix/link/*.c")
list(APPEND Sources ${Sources_Unix} ${Link_Unix})
elseif(CMAKE_SYSTEM_NAME MATCHES "Emscripten")
file (GLOB Sources_Emscripten "src/system/emscripten/*.c")
list(APPEND Sources ${Sources_Emscripten})
Expand Down

0 comments on commit 7ba288d

Please sign in to comment.