Skip to content

Commit

Permalink
Move out KokkosExt tests out of DetailsUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokop committed Oct 3, 2024
1 parent 6b3b389 commit cc99046
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ add_executable(ArborX_Test_DetailsUtils.exe
tstDetailsVector.cpp
tstDetailsUtils.cpp
tstDetailsGeometryReducer.cpp
tstDetailsKokkosExtStdAlgorithms.cpp
tstDetailsKokkosExtKernelStdAlgorithms.cpp
tstDetailsKokkosExtUninitializedMemoryAlgorithms.cpp
tstDetailsKokkosExtMinMaxReduce.cpp
tstDetailsKokkosExtViewHelpers.cpp
utf_main.cpp
)
# TODO link Boost::dynamic_linking interface target to enable dynamic linking
Expand All @@ -64,6 +59,18 @@ target_compile_definitions(ArborX_Test_DetailsUtils.exe PRIVATE BOOST_TEST_DYN_L
target_include_directories(ArborX_Test_DetailsUtils.exe PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
add_test(NAME ArborX_Test_DetailsUtils COMMAND ArborX_Test_DetailsUtils.exe)

add_executable(ArborX_Test_KokkosExt.exe
tstDetailsKokkosExtStdAlgorithms.cpp
tstDetailsKokkosExtKernelStdAlgorithms.cpp
tstDetailsKokkosExtUninitializedMemoryAlgorithms.cpp
tstDetailsKokkosExtMinMaxReduce.cpp
tstDetailsKokkosExtViewHelpers.cpp
utf_main.cpp
)
target_link_libraries(ArborX_Test_KokkosExt.exe PRIVATE ArborX Boost::unit_test_framework Boost::dynamic_linking)
target_include_directories(ArborX_Test_KokkosExt.exe PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
add_test(NAME ArborX_Test_KokkosExt COMMAND ArborX_Test_KokkosExt.exe)

add_executable(ArborX_Test_Geometry.exe
tstDetailsAlgorithms.cpp
tstCompileOnlyGeometry.cpp
Expand Down

0 comments on commit cc99046

Please sign in to comment.