Corrections

This commit is contained in:
Gauthier Folzan 2020-05-10 19:22:50 +02:00
parent f66f17e645
commit 93193cd33d
2 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,7 @@ spack build-env dune-newmodule $SHELL
``` ```
### Initialize dune project ### Initialize dune project
``` ```
export DUNE_CONTROL_PATH=$SPACK_ROOT/opt/spack/linux-archrolling-sandybridge/gcc-9.2.0/
duneproject duneproject
``` ```
Answer the questions about the new modules, enter the project folder and compile with standard cmake Answer the questions about the new modules, enter the project folder and compile with standard cmake

View File

@ -59,7 +59,6 @@ class DuneFunctions(CMakePackage):
variant('selector', default=True, description='Grid selector definition added to config.h') variant('selector', default=True, description='Grid selector definition added to config.h')
variant('oldcategory', default=True, description='Enable/Disable the backwards compatibility of the category enum/method in dune-istl solvers, preconditioner, etc.') variant('oldcategory', default=True, description='Enable/Disable the backwards compatibility of the category enum/method in dune-istl solvers, preconditioner, etc.')
variant('extrautils', default=True, description='Enable compilation and installation of extra utilities from the src subdirectory') variant('extrautils', default=True, description='Enable compilation and installation of extra utilities from the src subdirectory')
variant('selector', default=True, description='Grid selector definition added to config.h')
variant('threads', default=True, description='Activate pThread support') variant('threads', default=True, description='Activate pThread support')
variant('shared', default=True, description='Enables the build of shared libraries.') variant('shared', default=True, description='Enables the build of shared libraries.')
variant('alugrid', default=False, description='Support of dune-alugrid module') variant('alugrid', default=False, description='Support of dune-alugrid module')