Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 1.89 KB

cmake.rst

File metadata and controls

60 lines (38 loc) · 1.89 KB

Developers

CMake is our primary build system. If you are new to CMake, this short tutorial from the HEP Software foundation is the perfect place to get started. If you just want to use CMake to build the project, jump into sections 1. Introduction, 2. Building with CMake and 9. Finding Packages.

Dependencies

Before you start, you will need a copy of the ExaEpi source code:

git clone https://github.com/AMReX-Codes/exaepi.git $HOME/src/exaepi
cd $HOME/src/exaepi

ExaEpi depends on popular third party software.

  • On your development machine, follow the instructions here <install-dependencies>.
  • If you are on an HPC machine, follow the instructions here <install-hpc>.

dependencies

Compile

From the base of the ExaEpi source directory, execute:

# find dependencies & configure
#   see additional options below, e.g.
#                   -DCMAKE_INSTALL_PREFIX=$HOME/sw/exaepi
cmake -S . -B build

# compile, here we use four threads
cmake --build build -j 4

That's all! ExaEpi binaries are now in build/bin/. You can execute these binaries directly or copy them out.

You can inspect and modify build options after running cmake -S . -B build with either

ccmake build

or by adding arguments with -D<OPTION>=<VALUE> to the first CMake call, e.g.:

cmake -S . -B build -DAMReX_GPU_BACKEND=CUDA