Skip to content

Commit

Permalink
sync again
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Dec 5, 2023
1 parent 8d0a627 commit de51a91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ library:
local:
( cd build && cmake $(CMAKE_OPTIONS) -USUITESPARSE_PKGFILEDIR -DLOCAL_INSTALL=1 .. && cmake --build . --config Release -j${JOBS} )

# install CMAKE_INSTALL_PREFIX
global:
( cd build && cmake $(CMAKE_OPTIONS) -USUITESPARSE_PKGFILEDIR -DLOCAL_INSTALL=0 .. && cmake --build . --config Release -j${JOBS} )

vanilla:
( cd build && cmake $(CMAKE_OPTIONS) -USUITESPARSE_PKGFILEDIR -DLAGRAPH_VANILLA=1 .. && cmake --build . --config Release -j${JOBS} )

Expand Down
3 changes: 2 additions & 1 deletion cmake_modules/SuiteSparsePolicy.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# for their numerical factorizsation. The flag is false
# for GraphBLAS since CUDA for that package is in
# progress and not ready for production use.
# CUDA acceleration not supported on Windows with MSVC.
#
# LOCAL_INSTALL: if true, "cmake --install" will install
# into SuiteSparse/lib and SuiteSparse/include.
Expand Down Expand Up @@ -265,7 +266,7 @@ endif ( )
# find CUDA
#-------------------------------------------------------------------------------

if ( ENABLE_CUDA )
if ( ENABLE_CUDA AND NOT MSVC )

# try finding CUDA
check_language ( CUDA )
Expand Down

0 comments on commit de51a91

Please sign in to comment.