summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-28 09:35:39 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 17:00:35 +0100
commitd3dbfdaa9adfd6160854f6287e5c23063f024595 (patch)
tree6bc3fbf8c9c6d61ade8d1d2958bd6b30e4b8d805
parent232dceb6b5397c8983341ae445799aac0ce19ade (diff)
Add cscript file.
-rw-r--r--cscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/cscript b/cscript
new file mode 100644
index 0000000..22e1c88
--- /dev/null
+++ b/cscript
@@ -0,0 +1,8 @@
+
+def build(target, options):
+ cmd = './configure --prefix=%s ' % target.directory
+ target.append_with_space('LIBS', '-lboost_system')
+ target.append_with_space('LIBS', '-lboost_filesystem')
+ target.command(cmd)
+ target.command('make -j8 V=1')
+ target.command('make install')