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/tests/CMakeLists.txt

25 lines
540 B
CMake
Raw Normal View History

2016-05-20 18:46:37 +02:00
set(target tests)
file(GLOB core_sources "*.cpp")
2017-05-09 13:01:10 +02:00
set(includes
2016-05-20 18:46:37 +02:00
${Boost_INCLUDE_DIRS}
${PROJECT_SOURCE_DIR}/include
2016-11-12 18:14:30 +01:00
${PROJECT_SOURCE_DIR}/lib/catch/single_include
${PROJECT_SOURCE_DIR}/lib/parsebase/include
2016-05-20 18:46:37 +02:00
)
set(libraries
${Boost_LIBRARIES}
plasp
)
add_executable(${target} ${core_sources})
2017-05-09 13:01:10 +02:00
target_include_directories(${target} PRIVATE ${includes})
2016-05-20 18:46:37 +02:00
target_link_libraries(${target} ${libraries})
add_custom_target(run-tests
COMMAND ${CMAKE_BINARY_DIR}/bin/tests
DEPENDS ${target}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests)