Added cmake build instructions for app, lib and test. Included Qt via environment variable QT_DIR. Included CxxTest via environment variable CXX_TEST_DIR. Added scripts for setup, syncing master and publishing features. Added dlls for QT on Windows.
16 lines
240 B
Bash
Executable File
16 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SUCCESS="\033[32mSuccess:\033[00m"
|
|
|
|
# Enter masterproject directory
|
|
MY_PATH=`dirname "$0"`
|
|
cd $MY_PATH/..
|
|
|
|
# Remove folders and contents
|
|
rm -rf build
|
|
rm -rf lib
|
|
rm -rf bin/Debug
|
|
rm -rf bin/Release
|
|
|
|
echo $SUCCESS "clean complete"
|