Skip to content
Snippets Groups Projects
Commit 7bc96528 authored by Benjamin Cumming's avatar Benjamin Cumming
Browse files

move modparser to externals

parents 0ffd49a9 6687c3de
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,6 @@
[submodule "json"]
path = external/json
url = git@github.com:bcumming/json.git
[submodule "modparser"]
path = external/modparser
url = git@github.com:eth-cscs/modparser.git
# 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
```
Subproject commit d1dd8fa868c0dc7e348093ed4a4b5c6c94e29e34
for mech in pas hh
do
modcc -t cpu -o ../include/mechanisms/$mech.hpp ./mod/$mech.mod
../modparser/bin/modcc -t cpu -o ../include/mechanisms/$mech.hpp ./mod/$mech.mod
done
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