
def build(target, options):
    cmd = './waf configure --prefix=%s ' % target.directory
    if target.platform == 'linux':
        cmd += ' --static'
    elif target.platform == 'windows':
        cmd += ' --target-windows'

    target.append_with_space('LIBS', '-lboost_system')
    target.append_with_space('LIBS', '-lboost_filesystem')
    target.command(cmd)
    target.command('./waf build install')
