Add cscript file.
authorCarl Hetherington <cth@carlh.net>
Thu, 28 Jan 2016 09:35:39 +0000 (09:35 +0000)
committerCarl Hetherington <cth@carlh.net>
Tue, 3 Dec 2019 16:00:35 +0000 (17:00 +0100)
cscript [new file with mode: 0644]

diff --git a/cscript b/cscript
new file mode 100644 (file)
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')