Changed build process to use an individual bin/<subfolder> for each target. This way each target has its own data folder and its own set of dlls.
19 lines
332 B
Bash
Executable File
19 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SUCCESS="\033[32mSuccess:\033[00m"
|
|
|
|
# Enter masterproject directory
|
|
MY_PATH=`dirname "$0"`
|
|
cd $MY_PATH/..
|
|
|
|
# Remove folders and contents
|
|
rm -rf build
|
|
rm -rf bin/app/Debug
|
|
rm -rf bin/app/Release
|
|
rm -rf bin/lib/Debug
|
|
rm -rf bin/lib/Release
|
|
rm -rf bin/test/Debug
|
|
rm -rf bin/test/Release
|
|
|
|
echo -e $SUCCESS "clean complete"
|