Building sampik =============== System Prerequisites -------------------- Sampik requires a C++20 conforming compiler. .. csv-table:: System prerequesites for building sampik :file: ../tables/system_prereqs.csv :header-rows: 1 Get sampik from GitHub: .. code-block:: console $ git clone https://github.com/dssgabriel/sampik.git $ cd sampik Build ----- A basic CMake configure and build: .. code-block:: console $ cmake -S \ -B \ -DKokkosROOT= $ cmake --build Install ------- You can then install sampik using the provided ``install`` target: .. code-block:: console $ cmake --build --target install Test ---- Tests must be enabled via CMake configuration options: .. code-block:: console $ cmake -Dsampik_ENABLE_TESTS=ON # other options... $ cmake --build $ ctest --test-dir /test