From 2731ed9efd1955ef0a5be4b3183d5437379c6ac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=BCtzel?= Date: Sun, 5 Nov 2023 12:29:01 +0100 Subject: [PATCH] GraphBLAS: Fix include directory of static library in build tree This is only an issue when trying to link to the GraphBLAS_static CMake target before it is installed. No functional change for that target after it is installed. Missed in e1c7e4ea0bc651c8136cc3a71fd8228bccb72644 --- GraphBLAS/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GraphBLAS/CMakeLists.txt b/GraphBLAS/CMakeLists.txt index 4b9d66106..d43e37c62 100644 --- a/GraphBLAS/CMakeLists.txt +++ b/GraphBLAS/CMakeLists.txt @@ -37,7 +37,7 @@ set ( PROJECT_VERSION "${GraphBLAS_VERSION_MAJOR}.${GraphBLAS_VERSION_MINOR}.${G # GraphBLAS takes a long time to build, so do not build the static library # by default -set ( NSTATIC_DEFAULT_ON true ) +set ( NSTATIC_DEFAULT_ON ON ) # CUDA is under development for now, and not deployed in production: set ( ENABLE_CUDA false ) @@ -292,7 +292,7 @@ if ( NOT NSTATIC ) endif ( ) target_include_directories ( GraphBLAS_static - INTERFACE $ + INTERFACE $ $ ) if ( SUITESPARSE_CUDA )