blob: 5f2d151771d45de83a4d5d393a18129203d98c1a (
plain)
1
2
3
4
5
6
7
|
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')
|