From e4547b8e0d619c7101c7becf9b4b3b7bf31f7824 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Thu, 23 Apr 2020 14:48:20 +0200 Subject: [PATCH] Set GSL to OFF by default Build server in Equinor is not updated with required minimum version for CMake, set GSL off by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 77c4972428..771cb4e303 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -327,7 +327,7 @@ list(APPEND THIRD_PARTY_LIBRARIES # GNU GSL ################################################################################ -option(GSL_ENABLE "Enable the GNU Scientific Library for Statistics" ON) +option(GSL_ENABLE "Enable the GNU Scientific Library for Statistics" OFF) if(GSL_ENABLE) if (NOT EXISTS "${PROJECT_SOURCE_DIR}/ThirdParty/gsl/CMakeLists.txt") message(FATAL_ERROR "The GSL submodule was not downloaded! GIT_SUBMODULE was turned off or failed. Please update submodules and try again.")