Skip to content

Commit

Permalink
Remove unnecessary include dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim committed Mar 14, 2024
1 parent ebbe8f6 commit 192ed03
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions cpp/examples/developers/graph_operations/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,10 @@ include(../../../cmake/thirdparty/get_nccl.cmake)
add_executable(graph_operations graph_operations.cu)

target_include_directories(graph_operations
PUBLIC
"../../../../thirdparty/mmio"
"../../../tests"
"../../../include"
PRIVATE
"../../../src"
)

set_target_properties(graph_operations PROPERTIES CUDA_ARCHITECTURES "native")
target_link_libraries(graph_operations PUBLIC cugraph::cugraph NCCL::NCCL MPI::MPI_CXX)
target_link_libraries(graph_operations PRIVATE cugraph::cugraph NCCL::NCCL MPI::MPI_CXX)
target_compile_features(graph_operations PRIVATE cxx_std_17)

0 comments on commit 192ed03

Please sign in to comment.