Skip to content
Snippets Groups Projects
user avatar
Ben Cumming authored
Merge Issue 18: Cleanup of includes
6b9444c5

cell_algorithms

# 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 external/modparser
cmake .
make -j
cd ../..

# create mechanisms
cd mechanisms
./generate.sh
cd ..

# build main project
cmake .
make -j

# test
cd tests
./test.exe