patrick
/
plasp
Archived
1
0
Fork 0
This repository has been archived on 2023-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
plasp/src/CMakeLists.txt

32 lines
507 B
CMake

set(target plasp)
file(GLOB core_sources "plasp/*.cpp")
file(GLOB core_headers "../include/plasp/*.h")
file(GLOB sas_sources "plasp/sas/*.cpp")
file(GLOB sas_headers "../include/plasp/sas/*.h")
include_directories(
${Boost_INCLUDE_DIRS}
)
include_directories(
${PROJECT_SOURCE_DIR}/include
)
set(sources
${core_sources}
${core_headers}
${sas_sources}
${sas_headers}
)
set(libraries
${Boost_LIBRARIES}
pthread
)
add_library(${target} ${sources})
target_link_libraries(${target} ${libraries})