Add cscript file.
[asdcplib.git] / cscript
1
2 def build(target, options):
3     cmd = './configure --prefix=%s ' % target.directory
4     target.append_with_space('LIBS', '-lboost_system')
5     target.append_with_space('LIBS', '-lboost_filesystem')
6     target.command(cmd)
7     target.command('make -j8 V=1')
8     target.command('make install')