build: fixed project setup

* expanded setup script to create symbolic links
* expanded clean script to remove symbolic links before deleting contents of Debug and Release folders.
* fixed lines in tutorial so they don't exceed the limit of 80 chars.
This commit is contained in:
malte_langkabel
2016-01-27 16:14:48 +01:00
parent fdf44b4573
commit 45fcf80a74
3 changed files with 9 additions and 4 deletions
+4
View File
@@ -6,6 +6,10 @@ SUCCESS="\033[32mSuccess:\033[00m"
MY_PATH=`dirname "$0"`
cd $MY_PATH/..
# Remove symbolic links
cmd //c 'rmdir '.$MY_PATH.'\..\bin\app\Debug\data' &
cmd //c 'rmdir '.$MY_PATH.'\..\bin\app\Release\data' &
# Remove folders and contents
rm -rf build
rm -rf bin/app/Debug