9 lines
190 B
CMake
9 lines
190 B
CMake
set(SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
file(GLOB_RECURSE ALL_SOURCES "*.c")
|
|
|
|
include_directories(${DIR_MODULES})
|
|
include_directories(${DIR_LIBS})
|
|
|
|
add_library(script ${ALL_SOURCES})
|