Adds an dev env setup script

This commit is contained in:
Linus Probert 2019-06-10 09:43:39 +02:00
parent f102e49daf
commit 9aefed0d00
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/sh
mkdir -p _build/debug
mkdir -p _build/release
cd _build/debug
cmake -DCMAKE_BUILD_TYPE=Debug ../..
cd -
cd _build/release
cmake -DCMAKE_BUILD_TYPE=Release ../..
cd -