diff options
author | Paul Gessinger <paul.gessinger@cern.ch> | 2024-11-12 20:41:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-12 14:41:14 -0500 |
commit | 3dadf569a4754c4254db7f411336e67dde52cbf4 (patch) | |
tree | 940736e928d68b859c72bd665c16f1c9ff251599 /var | |
parent | 751585f1e3f93a784f402fdc598949d5e63cba34 (diff) | |
download | spack-3dadf569a4754c4254db7f411336e67dde52cbf4.tar.gz spack-3dadf569a4754c4254db7f411336e67dde52cbf4.tar.bz2 spack-3dadf569a4754c4254db7f411336e67dde52cbf4.tar.xz spack-3dadf569a4754c4254db7f411336e67dde52cbf4.zip |
geomodel: Allow configuring C++ standard (#47422)
* geomodel: Allow configuring C++ standard
* drop c++11
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/geomodel/package.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/geomodel/package.py b/var/spack/repos/builtin/packages/geomodel/package.py index 9490c569e8..68d561a015 100644 --- a/var/spack/repos/builtin/packages/geomodel/package.py +++ b/var/spack/repos/builtin/packages/geomodel/package.py @@ -54,6 +54,14 @@ class Geomodel(CMakePackage): when="+fullsimlight", ) + variant( + "cxxstd", + default="17", + values=("17", "20", "23"), + multi=False, + description="Use the specified C++ standard when building", + ) + conflicts("+fullsimlight", when="+fsl", msg="FSL triggers the build of the FullSimLight") depends_on("cmake@3.16:", type="build") @@ -80,5 +88,6 @@ class Geomodel(CMakePackage): self.define_from_variant("GEOMODEL_BUILD_FSL", "fsl"), self.define_from_variant("GEOMODEL_BUILD_EXAMPLES", "examples"), self.define_from_variant("GEOMODEL_BUILD_TOOLS", "tools"), + self.define_from_variant("CMAKE_CXX_STANDARD", "cxxstd"), ] return args |