We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0541269 commit 7639872Copy full SHA for 7639872
.gitignore
@@ -30,3 +30,5 @@ examples/*.csv
30
# Utils generated folders
31
__pycache__
32
images
33
+examples/debug
34
+examples/release
examples/README.md
@@ -4,7 +4,11 @@ Many of these simulations were used as thesis work.
4
5
To compile all simulations, use cmake inside the *examples* folder:
6
```shell
7
-cmake -B build -DCMAKE_BUILD_TYPE=Release && make -C build
+cmake -B release -DCMAKE_BUILD_TYPE=Release && make -C release
8
+```
9
+If anything goes wrong, try to build the example in debug mode:
10
+```shell
11
+cmake -B debug -DCMAKE_BUILD_TYPE=Debug && make -C debug
12
```
13
14
## Simulation files
0 commit comments