summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
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':