diff --git a/CMakeLists.txt b/CMakeLists.txt index d010e52..2879a88 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ option(BUILD_DEBUG "Builds the program with extensive error checkin option(BUILD_STANDALONE "Builds the standalone Astaroth" ON) option(BUILD_UTILS "Builds the utility library" ON) option(BUILD_RT_VISUALIZATION "Builds the module for real-time visualization using SDL2" OFF) -option(BUILD_SAMPLES "Builds samples" OFF) +option(BUILD_SAMPLES "Builds projects in samples subdirectory" OFF) option(DOUBLE_PRECISION "Generates double precision code" OFF) option(MULTIGPU_ENABLED "If enabled, uses all the available GPUs" ON) option(MPI_ENABLED "Enables additional functions for MPI communciation" OFF) diff --git a/README.md b/README.md index 827882e..0ed93dc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ APIs and provides a domain-specific language for translating high-level descript makes Astaroth especially suitable for multiphysics simulations. Astaroth is licenced under the terms of the GNU General Public Licence, version 3, or later -(see [LICENCE.txt](LICENCE.md)). For contributing guidelines, +(see [LICENCE.txt](LICENCE.md)). For contributing guidelines, see [Contributing](CONTRIBUTING.md). @@ -46,7 +46,8 @@ See [CMakeLists.txt](https://bitbucket.org/jpekkila/astaroth/src/master/CMakeLis | BUILD_STANDALONE | Builds a standalone library for testing, benchmarking and simulation | ON | | BUILD_UTILS | Builds a generic utility library (WIP replacement for BUILD_STANDALONE) | ON | | BUILD_RT_VISUALIZATION | Builds the real-time visualization module | OFF | -| BUILD_DOUBLE_PRECISION | Generates double precision code | OFF | +| BUILD_SAMPLES | Builds projects in samples subdirectory | OFF | +| DOUBLE_PRECISION | Generates double precision code | OFF | | MULTIGPU_ENABLED | Enables Astaroth to use multiple GPUs on a single node | ON | | MPI_ENABLED | Enables additional functions for MPI communciation | OFF | | DSL_MODULE_DIR | Defines the directory to be scanned when looking for DSL files | `astaroth/acc/mhd_solver` | @@ -87,4 +88,3 @@ How do I compile with MPI support? How do I contribute? > See [Contributing](CONTRIBUTING.md). -