Skip to content

Commit

Permalink
builddir to build
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Oct 30, 2024
1 parent e87446d commit a1440fc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions doc/sphinx/src/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ At it's most basic, you can download and compile ``singularity-eos`` with:
git clone --recursive [email protected]:lanl/singularity-eos.git
cd singularity-eos
cmake -B builddir -S . -DSINGULARITY_FORCE_SUBMODULE_MODE=ON -DSINGULARITY_USE_FORTRAN=OFF -DSINGULARITY_BUILD_EXAMPLES=ON -DSINGULARITY_BUILD_TESTS=ON
cmake --build builddir --parallel
cmake --install builddir # optional: install into directory defined via CMAKE_INSTALL_PREFIX
cmake --build build --parallel
cmake --install build # optional: install into directory defined via CMAKE_INSTALL_PREFIX
This will download ``singularity-eos`` with no optional dependencies and
compile the capabilities available in that form. For more details, see
Expand All @@ -23,7 +23,8 @@ You can also run unit tests by calling
make test
which should produce output confirming that several tests pass.
in the ``build`` directory, which should produce output confirming that
several tests pass.

Once compiled, you can quickly check your build/install by going to
``build/example`` and running ``./get_sound_speed_press``. You should be
Expand Down

0 comments on commit a1440fc

Please sign in to comment.