Skip to content

Commit

Permalink
Make the default value of WITH_CUDA option OFF
Browse files Browse the repository at this point in the history
With the CUDA compiler guessing mechanism removed, the user must
explicitly states if CUDA is available and which compiler to use.
  • Loading branch information
jngrad committed Mar 14, 2020
1 parent 6bac9e9 commit b1277d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ set(CMAKE_FIND_FRAMEWORK LAST)

option(WITH_PYTHON "Build with Python bindings" ON)
option(WITH_GSL "Build with GSL support" ON)
option(WITH_CUDA "Build with GPU support" ON)
option(WITH_CUDA "Build with GPU support" OFF)
option(WITH_HDF5 "Build with HDF5 support" ON)
option(WITH_TESTS "Enable tests" ON)
option(WITH_SCAFACOS "Build with Scafacos support" OFF)
Expand Down
2 changes: 1 addition & 1 deletion maintainer/CI/build_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ set_default_value make_check_python true
set_default_value make_check_tutorials false
set_default_value make_check_samples false
set_default_value make_check_benchmarks false
set_default_value with_cuda true
set_default_value with_cuda false
set_default_value build_type "Debug"
set_default_value with_ccache false
set_default_value with_scafacos true
Expand Down

0 comments on commit b1277d8

Please sign in to comment.