From e80a696948e93e91374c4a05ac6956f3ea9f7608 Mon Sep 17 00:00:00 2001 From: Dante Gama Dessavre Date: Tue, 1 Jun 2021 11:45:00 -0500 Subject: [PATCH] Correct install path for include folder to avoid double nesting (#1630) Similar to https://github.com/rapidsai/cuml/pull/3901. After #1491 and #rapids-cmake and #1585, now at install time, the cugraph headers are being nested into `path/to/env/include/cugraph/cugraph` instead of just `path/to/env/include/cugraph/`. This, as far as I'm aware, is unintentional and unlike the rest of RAPIDS projects (cuDF, RMM and cuML). cc @trxcllnt @robertmaynard Authors: - Dante Gama Dessavre (https://github.com/dantegd) Approvers: - Chuck Hastings (https://github.com/ChuckHastings) - Robert Maynard (https://github.com/robertmaynard) - Seunghwa Kang (https://github.com/seunghwak) - Paul Taylor (https://github.com/trxcllnt) - Rick Ratzel (https://github.com/rlratzel) URL: https://github.com/rapidsai/cugraph/pull/1630 --- cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index a83ea69d725..d1f50c42b14 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -335,7 +335,7 @@ install(TARGETS cugraph EXPORT cugraph-exports) install(DIRECTORY include/ - DESTINATION include/cugraph) + DESTINATION include) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/cugraph/version_config.hpp DESTINATION include/cugraph)