8 lines
147 B
CMake
8 lines
147 B
CMake
set(TARGET demo)
|
|
|
|
file(GLOB_RECURSE SRC_SOURCE src/**.cpp)
|
|
add_executable(${TARGET} ${SRC_SOURCE})
|
|
|
|
target_link_libraries(${TARGET} expkg-static)
|
|
|