help="Use MKL. By setting this option, you agree to the [Intel End User License Agreement](https://software.intel.com/en-us/articles/end-user-license-agreement).",
)
parse_g.add_argument(
"--netcdf",
dest="netcdf",
action="store_true",
help="Install netcdf and build OGS with -DOGS_USE_NETCDF=ON",
)
iftoolchain.CC=="mpicc":
parse_g.add_argument(
"--petsc_configure_args",
...
...
@@ -400,6 +406,9 @@ if local_args.ogs != "clean":
]
)
iflocal_args.netcdf:
Stage0+=packages(apt=["libnetcdf-c++4-dev"])
iflocal_args.gui:
Stage0+=packages(
apt=[
...
...
@@ -551,6 +560,10 @@ if local_args.ogs != "clean":
toolchain=toolchain,
version=hdf5_version,
)
iflocal_args.pm=="off"andlocal_args.netcdf:
Stage0+=packages(apt=["libnetcdf-dev"])
iflocal_args.cvode:
# TODO version
Stage0+=generic_cmake(
...
...
@@ -651,6 +664,8 @@ if local_args.ogs != "off" and local_args.ogs != "clean":