summaryrefslogtreecommitdiff
path: root/default.bld
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2013-04-15 23:45:48 -0600
committerMike Buland <mike@xagasoft.com>2013-04-15 23:45:48 -0600
commit44542adf023315d60a8ffc4863f2b161b3c1eb90 (patch)
tree3500c1d6cfa3e5670bde199e24125c4b8e0c33db /default.bld
parentf34eb76357fdfc314d6451fd11a2e4d6fcfce434 (diff)
downloadclic-44542adf023315d60a8ffc4863f2b161b3c1eb90.tar.gz
clic-44542adf023315d60a8ffc4863f2b161b3c1eb90.tar.bz2
clic-44542adf023315d60a8ffc4863f2b161b3c1eb90.tar.xz
clic-44542adf023315d60a8ffc4863f2b161b3c1eb90.zip
Addition, subtraction, and multiplication work now
Division isn't working yet, there are too many options, I'll figure out something eventually :-P
Diffstat (limited to 'default.bld')
-rw-r--r--default.bld9
1 files changed, 9 insertions, 0 deletions
diff --git a/default.bld b/default.bld
new file mode 100644
index 0000000..d39ddc5
--- /dev/null
+++ b/default.bld
@@ -0,0 +1,9 @@
1target "clic"
2{
3 rule "exe";
4 input files("src/*.cpp");
5
6 CXXFLAGS += "-ggdb";
7 LDFLAGS += "-ggdb -lbu++";
8}
9