-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #348 from dalg24/target_alias
- Loading branch information
Showing
8 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
add_executable(ArborX_DistributedTree.exe distributed_tree_driver.cpp) | ||
target_link_libraries(ArborX_DistributedTree.exe ArborX Boost::program_options) | ||
target_link_libraries(ArborX_DistributedTree.exe ArborX::ArborX Boost::program_options) | ||
target_include_directories(ArborX_DistributedTree.exe PRIVATE ${CMAKE_SOURCE_DIR}/benchmarks/point_clouds) | ||
add_test(NAME ArborX_DistributedTree_Benchmark COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_PREFLAGS} ./ArborX_DistributedTree.exe ${MPIEXEC_POSTFLAGS}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
if(Kokkos_ENABLE_CUDA) | ||
add_executable(ArborX_CudaAccessTraits.exe example_cuda_access_traits.cpp) | ||
target_link_libraries(ArborX_CudaAccessTraits.exe ${ArborX_TARGET}) | ||
target_link_libraries(ArborX_CudaAccessTraits.exe ArborX::ArborX) | ||
add_test(NAME ArborX_CudaAccessTraits_Example COMMAND ./ArborX_CudaAccessTraits.exe) | ||
endif() | ||
add_executable(ArborX_HostAccessTraits.exe example_host_access_traits.cpp) | ||
target_link_libraries(ArborX_HostAccessTraits.exe ${ArborX_TARGET}) | ||
target_link_libraries(ArborX_HostAccessTraits.exe ArborX::ArborX) | ||
add_test(NAME ArborX_HostAccessTraits_Example COMMAND ./ArborX_HostAccessTraits.exe) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
add_executable(ArborX_Callback.exe example_callback.cpp) | ||
target_link_libraries(ArborX_Callback.exe ${ArborX_TARGET}) | ||
target_link_libraries(ArborX_Callback.exe ArborX::ArborX) | ||
add_test(NAME ArborX_Callback_Example COMMAND ./ArborX_Callback.exe) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters