6 lines
269 B
CMake
6 lines
269 B
CMake
file(GLOB_RECURSE PSEMEK_CG_HEADERS "include/*.hpp")
|
|
|
|
add_library(cg STATIC ${PSEMEK_CG_HEADERS})
|
|
target_include_directories(cg PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
|
|
target_link_libraries(cg PUBLIC geom)
|
|
set_target_properties(cg PROPERTIES LINKER_LANGUAGE CXX)
|