diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-04 01:31:44 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-04 01:31:44 +0100 |
commit | dcd4ef0a20679a28b83e2af321df194232f1fb87 (patch) | |
tree | 56720ac80372785810f033121ca6f54a587fd431 /build.sh | |
parent | 5438b161170f5e4fb421a4b99e0698f24a3ce828 (diff) |
Create build directory if it does not exist
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |