18 lines
384 B
CMake
18 lines
384 B
CMake
set(target tests)
|
|
|
|
file(GLOB core_sources "*.cpp")
|
|
|
|
set(includes
|
|
${PROJECT_SOURCE_DIR}/lib/catch/single_include
|
|
)
|
|
|
|
add_executable(${target} ${core_sources})
|
|
target_include_directories(${target} PRIVATE ${includes})
|
|
target_link_libraries(${target} anthem)
|
|
|
|
add_custom_target(run-tests
|
|
COMMAND ${CMAKE_BINARY_DIR}/bin/tests
|
|
DEPENDS ${target}
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
|
)
|