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.
10 lines
144 B
Bash
Executable File
10 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Determine path to script
|
|
MY_PATH=`dirname "$0"`
|
|
|
|
cd $MY_PATH/..
|
|
|
|
# Build and run target
|
|
make -C build/Debug "$1" && bin/Debug/"$1"
|