diff --git a/python/cugraph/CMakeLists.txt b/python/cugraph/CMakeLists.txt index f90035f9460..ee929ca6e27 100644 --- a/python/cugraph/CMakeLists.txt +++ b/python/cugraph/CMakeLists.txt @@ -45,7 +45,7 @@ if(NOT cugraph_FOUND) # TODO: This will not be necessary once we upgrade to CMake 3.22, which will pull in the required # languages for the C++ project even if this project does not require those languges. include(rapids-cuda) - rapids_cuda_init_architectures(CUGRAPH) + rapids_cuda_init_architectures(cugraph-python) enable_language(CUDA) # Since cugraph only enables CUDA optionally, we need to manually include the file that diff --git a/python/pylibcugraph/CMakeLists.txt b/python/pylibcugraph/CMakeLists.txt index 030da9c3e38..9126536e472 100644 --- a/python/pylibcugraph/CMakeLists.txt +++ b/python/pylibcugraph/CMakeLists.txt @@ -49,13 +49,13 @@ if(NOT cugraph_FOUND) # TODO: This will not be necessary once we upgrade to CMake 3.22, which will pull in the required # languages for the C++ project even if this project does not require those languges. include(rapids-cuda) - rapids_cuda_init_architectures(CUGRAPH) + rapids_cuda_init_architectures(pylibcugraph-python) enable_language(CUDA) # Since cugraph only enables CUDA optionally, we need to manually include the file that # rapids_cuda_init_architectures relies on `project` including. - include("${CMAKE_PROJECT_cugraph-python_INCLUDE}") + include("${CMAKE_PROJECT_pylibcugraph-python_INCLUDE}") add_subdirectory(../../cpp cugraph-cpp)