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

23 lines
445 B
CMake
Raw Normal View History

2016-05-20 18:46:37 +02:00
set(target tests)
file(GLOB core_sources "*.cpp")
2016-05-20 19:50:11 +02:00
include_directories(
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
2016-05-20 18:46:37 +02:00
)
set(libraries
${Boost_LIBRARIES}
plasp
)
add_executable(${target} ${core_sources})
target_link_libraries(${target} ${libraries})
add_custom_target(run-tests
COMMAND ${CMAKE_BINARY_DIR}/bin/tests
DEPENDS ${target}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests)