summaryrefslogtreecommitdiff
path: root/cscript
blob: 0a3f59e16ce4b0dd4dd682088d6d74a18ec18823 (plain)
1
2
3
4
5
6
7
8
def build(target, options):
    cmd = './waf configure --prefix=%s' % target.work_dir_cscript()
    if target.platform == 'linux':
        cmd += ' --static --disable-tests'
    elif target.platform == 'windows':
        cmd += ' --target-windows'
    target.command(cmd)
    target.command('./waf build install')