blob: 5e7c29f62a4f95ff9edeb21916eab34cbed26500 (
plain)
1
2
3
4
5
6
7
8
9
|
def build(env, target):
cmd = './waf configure --prefix=%s' % env.work_dir_cscript()
if target.platform == 'windows':
cmd += ' --target-windows'
env.command(cmd)
env.command('./waf build install')
|