Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.14 KB

File metadata and controls

37 lines (24 loc) · 1.14 KB

Scribe - Reliable Serialization for HPC Simulations

Documentation

Intended for users:

For developers or anyone interested:

Build Instructions

A typical build on a linux system might look like this:

# install dependencies
sudo apt install libhdf5-dev

# download/compile Scribe
git https://github.com/krox/Scribe.git
mkdir Scribe/build && cd Scribe/build
cmake ..        # this will fetch further (source) dependencies like nlohmann/json
make

# check everything is in order
./scribe_tests  # run unittests
./scribe --help # check out the main executable

License

This project is licensed under the GNU General Public License v3.0. You are free to use, modify, and distribute this software under the terms of the GPLv3. For more details, see the COPYING file or visit https://www.gnu.org/licenses/gpl-3.0.html.