20 lines
430 B
CMake
20 lines
430 B
CMake
|
|
find_package(Catch2 REQUIRED)
|
|
|
|
file(GLOB test_kompute_CPP
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/*.cpp"
|
|
)
|
|
|
|
add_executable(test_kompute ${test_kompute_CPP})
|
|
|
|
target_include_directories(
|
|
test_kompute PUBLIC
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/single_include>
|
|
)
|
|
|
|
target_link_libraries(test_kompute PRIVATE Catch2::Catch2)
|
|
target_link_libraries(test_kompute PRIVATE kompute)
|
|
|
|
add_test(NAME test_kompute COMMAND test_kompute)
|
|
|
|
|