From 192ed032937f5fcc19814ca0a0b61d7b4d9fcdab Mon Sep 17 00:00:00 2001 From: Naim Date: Thu, 14 Mar 2024 05:03:40 +0100 Subject: [PATCH] Remove unnecessary include dirs --- cpp/examples/developers/graph_operations/CMakeLists.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/cpp/examples/developers/graph_operations/CMakeLists.txt b/cpp/examples/developers/graph_operations/CMakeLists.txt index 4a68f9a5c5e..db573592aff 100644 --- a/cpp/examples/developers/graph_operations/CMakeLists.txt +++ b/cpp/examples/developers/graph_operations/CMakeLists.txt @@ -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)