6 lines
126 B
CMake
6 lines
126 B
CMake
set(SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
file(GLOB_RECURSE ALL_SOURCES "*.c")
|
|
|
|
add_library(os_interface ${ALL_SOURCES})
|