3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 00:15:00 +02:00

Switch Build_Deps default from IfNotFound to Always

This commit is contained in:
Nils Wentzell 2021-04-13 09:41:34 -04:00
parent 4e1cdfe4e2
commit 33b548eb59

2
deps/CMakeLists.txt vendored
View File

@ -35,7 +35,7 @@ include(external_dependency.cmake)
# In particular the dependency will not be installed.
if(NOT DEFINED Build_Deps)
set(Build_Deps "IfNotFound" CACHE STRING "Do we build dependencies from source? [Never/Always/IfNotFound]")
set(Build_Deps "Always" CACHE STRING "Do we build dependencies from source? [Never/Always/IfNotFound]")
else()
set(Build_Deps_Opts "Never" "Always" "IfNotFound")
if(NOT ${Build_Deps} IN_LIST Build_Deps_Opts)