summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-06-18 16:32:11 +0100
committerCarl Hetherington <cth@carlh.net>2013-06-18 16:32:11 +0100
commitefb32ed996ce74cebf512ae37b3e0bfe5177b825 (patch)
tree274335604321e23fe1bbf5f08017541e8f259d54 /cscript
parentadbf32154e0322121a50ef285c9835d636ee0da1 (diff)
Add libcxml dep to cscript.
Diffstat (limited to 'cscript')
-rw-r--r--cscript7
1 files changed, 7 insertions, 0 deletions
diff --git a/cscript b/cscript
index 668805c2..24f82c86 100644
--- a/cscript
+++ b/cscript
@@ -1,5 +1,12 @@
import os
+def dependencies(target):
+ if target.platform == 'windows':
+ return ()
+ else:
+ # XXX: should be some versions in here
+ return (('libcxml', None))
+
def build(target):
cmd = './waf configure --prefix=%s' % target.work_dir_cscript()
if target.platform == 'linux':