* added PCH Flags list and checkbox to reuse compiler flags and cdb flags to source group setup * added UI tests for C++ and CDB source groups
17 lines
273 B
Bash
Executable File
17 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# get absolute path to parent directory of script
|
|
MY_PATH=`dirname "$0"`
|
|
if [[ "${MY_PATH}" != *\\* ]]
|
|
then
|
|
cd $MY_PATH
|
|
MY_PATH=`pwd`
|
|
fi
|
|
MY_PATH="${MY_PATH//\\//}"
|
|
|
|
WORKING_COPY_PATH=$MY_PATH/working_copy
|
|
|
|
rm -rf $WORKING_COPY_PATH
|
|
|
|
echo "Teardown Complete"
|