7 lines
162 B
CMake
7 lines
162 B
CMake
|
include_directories(${CMAKE_SOURCE_DIR}/src/)
|
||
|
|
||
|
file(GLOB_RECURSE SRCS ./*.cpp)
|
||
|
file(GLOB_RECURSE HDRS ./*.h)
|
||
|
|
||
|
add_library(graphene_alglib STATIC ${SRCS} ${HDRS})
|