Skip to content
Snippets Groups Projects
Commit b657096f authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Add a script to generate the graphs!

parent b95d150d
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,7 @@ execute_process(COMMAND git submodule update --init --recursive ...@@ -31,6 +31,7 @@ execute_process(COMMAND git submodule update --init --recursive
add_subdirectory(python) add_subdirectory(python)
add_subdirectory(test) add_subdirectory(test)
add_subdirectory(bin)
# finalize the dune project, e.g. generating config.h etc. # finalize the dune project, e.g. generating config.h etc.
finalize_dune_project(GENERATE_CONFIG_H_CMAKE) finalize_dune_project(GENERATE_CONFIG_H_CMAKE)
dune_symlink_to_source_files(FILES make_graph.sh)
#!/bin/bash
for f in "$@"
do
perl -i -pe 's/FunctionSpace\(.*\)\), //g' $f
dot -Tpdf -O $f
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment