Skip to content
Snippets Groups Projects
Commit 6687c3de authored by Ben Cumming's avatar Ben Cumming
Browse files

Update README.md

parent 2ffed80b
No related branches found
No related tags found
No related merge requests found
# cell_algorithms
```bash
# clone repo
git clone git@github.com:eth-cscs/cell_algorithms.git
cd cell_algorithms/
# setup sub modules
git submodule init
git submodule update
# setup environment
module load gcc
module load cmake
export CC=`which gcc`
export CXX=`which g++`
# build modparser
cd modparser
cmake .
make -j
cd ..
# create mechanisms
cd mechanisms
./generate.sh
cd ..
# build main project
cmake .
make -j
# test
cd tests
./test.exe
```
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment