diff options
author | Mike Buland <mike@xagasoft.com> | 2013-04-15 23:45:48 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2013-04-15 23:45:48 -0600 |
commit | 44542adf023315d60a8ffc4863f2b161b3c1eb90 (patch) | |
tree | 3500c1d6cfa3e5670bde199e24125c4b8e0c33db /default.bld | |
parent | f34eb76357fdfc314d6451fd11a2e4d6fcfce434 (diff) | |
download | clic-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.bld | 9 |
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 @@ | |||
1 | target "clic" | ||
2 | { | ||
3 | rule "exe"; | ||
4 | input files("src/*.cpp"); | ||
5 | |||
6 | CXXFLAGS += "-ggdb"; | ||
7 | LDFLAGS += "-ggdb -lbu++"; | ||
8 | } | ||
9 | |||