aboutsummaryrefslogtreecommitdiff
path: root/default.bld
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-05-17 01:24:51 +0000
committerMike Buland <eichlan@xagasoft.com>2011-05-17 01:24:51 +0000
commitefcbdb7a0347b4399cbabacf3cbea432eeafb17b (patch)
treed468a9d8e129cba0cef68a09421c0e21c720ede6 /default.bld
parent02c60c6720f41bcfc367d02ae4c655b651642991 (diff)
downloadlibgats-efcbdb7a0347b4399cbabacf3cbea432eeafb17b.tar.gz
libgats-efcbdb7a0347b4399cbabacf3cbea432eeafb17b.tar.bz2
libgats-efcbdb7a0347b4399cbabacf3cbea432eeafb17b.tar.xz
libgats-efcbdb7a0347b4399cbabacf3cbea432eeafb17b.zip
Gats::Object now has a strToGats function, it's pretty slick, it takes a string
and produces a fully formed gats tree. Also, gatscon now can interact with a server directly.
Diffstat (limited to 'default.bld')
-rw-r--r--default.bld7
1 files changed, 6 insertions, 1 deletions
diff --git a/default.bld b/default.bld
index 35302dd..a2e7e23 100644
--- a/default.bld
+++ b/default.bld
@@ -1,4 +1,6 @@
1 1
2execute("mkdir -p tmp");
3
2action "default" 4action "default"
3{ 5{
4 build: [targets("header-links"), "libgats.a"]; 6 build: [targets("header-links"), "libgats.a"];
@@ -78,6 +80,9 @@ rule "unit"
78include "qt4.bld"; 80include "qt4.bld";
79 81
80QTDIR = "/opt/qt-4"; 82QTDIR = "/opt/qt-4";
83MOC_DIR = "tmp";
84RCC_DIR = "tmp";
85UI_DIR = "tmp";
81 86
82target "gatscon" 87target "gatscon"
83{ 88{
@@ -89,7 +94,7 @@ target "gatscon"
89 94
90 CXXFLAGS += "-Isrc/gatscon"; 95 CXXFLAGS += "-Isrc/gatscon";
91 96
92 CXXFLAGS += "-I. -Ilibbu++"; 97 CXXFLAGS += "-I. -Ilibbu++ -Itmp";
93 LDFLAGS += "-L. -lgats -Llibbu++ -lbu++"; 98 LDFLAGS += "-L. -lgats -Llibbu++ -lbu++";
94} 99}
95 100