You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: free-flow-over-porous-media/compile-dumux-cases.sh
+13-8Lines changed: 13 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,20 @@
1
1
#!/usr/bin/env sh
2
2
set -e -u
3
3
4
-
(
5
-
cd free-flow-dumux/build-cmake/solver-dumux
6
-
make free_flow_dumux
7
-
)
4
+
# To compile free-flow-dumux and porous-media-dumux from scratch or recompile them after changes
5
+
./dune-common/bin/dunecontrol --opts=./dumux/cmake.opts --only=free_flow_dumux all
6
+
./dune-common/bin/dunecontrol --opts=./dumux/cmake.opts --only=porous_media_dumux all
8
7
9
-
(
10
-
cd porous-media-dumux/build-cmake/solver-dumux
11
-
make porous_media_dumux
12
-
)
8
+
# Alternatively, you can manually recompile free-flow-dumux and porous-media-dumux when the `build-cmake` folder is present by uncommenting the following lines:
9
+
# (
10
+
# cd free-flow-dumux/build-cmake/solver-dumux
11
+
# make free_flow_dumux
12
+
# )
13
+
14
+
# (
15
+
# cd porous-media-dumux/build-cmake/solver-dumux
16
+
# make porous_media_dumux
17
+
# )
13
18
14
19
# Move free-flow-dumux and porous-media-dumux executables to the participant folder level
0 commit comments