diff options
Diffstat (limited to 'attic/muse2-oom/muse2/compile_muse.sh')
-rwxr-xr-x | attic/muse2-oom/muse2/compile_muse.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/attic/muse2-oom/muse2/compile_muse.sh b/attic/muse2-oom/muse2/compile_muse.sh new file mode 100755 index 00000000..2e32f98a --- /dev/null +++ b/attic/muse2-oom/muse2/compile_muse.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +if [ -d build ]; then + echo "Build dir already exists" +else + echo "Create build dir" + mkdir build +fi +cd build +cmake -DCMAKE_BUILD_TYPE=release .. && make && echo "Build was OK, now enter the 'build' dir and run 'make install' as root" + |