Skip to content
Snippets Groups Projects
Verified Commit 970bea3d authored by Lars Bilke's avatar Lars Bilke
Browse files

[CMake] Enable Unity builds per default.

parent ba7464e3
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ set(OGS_CONAN_BUILD "missing" CACHE STRING "Possible values: all, missing, \ ...@@ -32,7 +32,7 @@ set(OGS_CONAN_BUILD "missing" CACHE STRING "Possible values: all, missing, \
never or list of libs to build") never or list of libs to build")
option(OGS_DISABLE_CCACHE "Disables ccache compiler cache." OFF) option(OGS_DISABLE_CCACHE "Disables ccache compiler cache." OFF)
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.16) if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.16)
option(OGS_USE_UNITY_BUILDS "Enables Unity builds for faster compilation." OFF) option(OGS_USE_UNITY_BUILDS "Enables Unity builds for faster compilation." ON)
endif() endif()
# Third-party libraries, names come from Conan package names # Third-party libraries, names come from Conan package names
......
...@@ -116,7 +116,6 @@ pipeline { ...@@ -116,7 +116,6 @@ pipeline {
'-DOGS_USE_CVODE=ON ' + '-DOGS_USE_CVODE=ON ' +
'-DOGS_USE_MFRONT=ON ' + '-DOGS_USE_MFRONT=ON ' +
'-DOGS_USE_PYTHON=ON ' + '-DOGS_USE_PYTHON=ON ' +
'-DOGS_USE_UNITY_BUILDS=ON ' +
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
} }
// Workaround some MGIS CMake logic flaws // Workaround some MGIS CMake logic flaws
...@@ -204,7 +203,6 @@ pipeline { ...@@ -204,7 +203,6 @@ pipeline {
'-DOGS_CONAN_BUILD=missing ' + '-DOGS_CONAN_BUILD=missing ' +
'-DOGS_BUILD_TESTS=OFF ' + '-DOGS_BUILD_TESTS=OFF ' +
'-DOGS_USE_NETCDF=ON ' + '-DOGS_USE_NETCDF=ON ' +
'-DOGS_USE_UNITY_BUILDS=ON ' +
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
} }
build { build {
...@@ -262,7 +260,6 @@ pipeline { ...@@ -262,7 +260,6 @@ pipeline {
'-DOGS_CONAN_BUILD=missing ' + '-DOGS_CONAN_BUILD=missing ' +
'-DOGS_CONAN_BUILD_TYPE=Release ' + '-DOGS_CONAN_BUILD_TYPE=Release ' +
'-DOGS_CPU_ARCHITECTURE=generic ' + '-DOGS_CPU_ARCHITECTURE=generic ' +
'-DOGS_USE_UNITY_BUILDS=ON ' +
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
config = 'Debug' config = 'Debug'
} }
...@@ -297,7 +294,6 @@ pipeline { ...@@ -297,7 +294,6 @@ pipeline {
'-DOGS_CPU_ARCHITECTURE=sandybridge ' + '-DOGS_CPU_ARCHITECTURE=sandybridge ' +
'-DCMAKE_INSTALL_PREFIX=/global/apps/ogs/head/standard ' + '-DCMAKE_INSTALL_PREFIX=/global/apps/ogs/head/standard ' +
'-DOGS_MODULEFILE=/global/apps/modulefiles/ogs/head/standard ' + '-DOGS_MODULEFILE=/global/apps/modulefiles/ogs/head/standard ' +
'-DOGS_USE_UNITY_BUILDS=ON ' + // no effect as cmake too old
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
env = 'eve/cli.sh' env = 'eve/cli.sh'
} }
...@@ -355,7 +351,6 @@ pipeline { ...@@ -355,7 +351,6 @@ pipeline {
'-DOGS_CPU_ARCHITECTURE=sandybridge ' + '-DOGS_CPU_ARCHITECTURE=sandybridge ' +
'-DCMAKE_INSTALL_PREFIX=/global/apps/ogs/head/petsc ' + '-DCMAKE_INSTALL_PREFIX=/global/apps/ogs/head/petsc ' +
'-DOGS_MODULEFILE=/global/apps/modulefiles/ogs/head/petsc ' + '-DOGS_MODULEFILE=/global/apps/modulefiles/ogs/head/petsc ' +
'-DOGS_USE_UNITY_BUILDS=ON ' + // no effect as cmake too old
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
env = 'eve/petsc.sh' env = 'eve/petsc.sh'
} }
...@@ -420,7 +415,6 @@ pipeline { ...@@ -420,7 +415,6 @@ pipeline {
'-DOGS_CONAN_BUILD=missing ' + '-DOGS_CONAN_BUILD=missing ' +
'-DOGS_BUILD_SWMM=ON ' + '-DOGS_BUILD_SWMM=ON ' +
'-DOGS_USE_NETCDF=ON ' + '-DOGS_USE_NETCDF=ON ' +
'-DOGS_USE_UNITY_BUILDS=ON ' +
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
} }
build { build {
...@@ -477,7 +471,6 @@ pipeline { ...@@ -477,7 +471,6 @@ pipeline {
'-DOGS_BUILD_UTILS=ON ' + '-DOGS_BUILD_UTILS=ON ' +
'-DOGS_CONAN_BUILD=missing ' + '-DOGS_CONAN_BUILD=missing ' +
'-DCMAKE_OSX_DEPLOYMENT_TARGET="10.15" ' + '-DCMAKE_OSX_DEPLOYMENT_TARGET="10.15" ' +
'-DOGS_USE_UNITY_BUILDS=ON ' +
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
} }
build { build {
...@@ -527,7 +520,6 @@ pipeline { ...@@ -527,7 +520,6 @@ pipeline {
'-DOGS_USE_CONAN=OFF ' + '-DOGS_USE_CONAN=OFF ' +
'-DCMAKE_OSX_DEPLOYMENT_TARGET="10.15" ' + '-DCMAKE_OSX_DEPLOYMENT_TARGET="10.15" ' +
'-DOGS_USE_NETCDF=ON ' + '-DOGS_USE_NETCDF=ON ' +
'-DOGS_USE_UNITY_BUILDS=ON ' +
'-DOGS_USE_PCH=OFF ' '-DOGS_USE_PCH=OFF '
} }
build { build {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment