summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rwxr-xr-xsyncbuildrun.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/syncbuildrun.sh b/syncbuildrun.sh
index 0d3ff3a..cd51ab6 100755
--- a/syncbuildrun.sh
+++ b/syncbuildrun.sh
@@ -1,5 +1,7 @@
-rsync --delete-excluded -av 192.168.1.100:Projects/Author/ . &&
-qmake -spec macx-g++ &&
+rsync --delete-excluded --exclude=build -av 192.168.1.100:Projects/Author/ .
+mkdir build
+cd build
+qmake -spec macx-g++ ../Author.pro &&
make &&
(killall Author; open Author.app)
-
+cd ..