summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-03-04 01:31:44 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-03-04 01:31:44 +0100
commitdcd4ef0a20679a28b83e2af321df194232f1fb87 (patch)
tree56720ac80372785810f033121ca6f54a587fd431 /build.sh
parent5438b161170f5e4fb421a4b99e0698f24a3ce828 (diff)
Create build directory if it does not exist
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 20ca6a2..f255987 100755
--- a/build.sh
+++ b/build.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-cd build && cmake .. -DTEST=on -DCMAKE_BUILD_TYPE=Debug
+mkdir -p build && cd build && cmake .. -DTEST=on -DCMAKE_BUILD_TYPE=Debug