Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame^] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 | |||||
3 | top = '..' | ||||
4 | |||||
5 | def build(bld): | ||||
6 | # List all .cpp files (whole example in one .cpp) | ||||
7 | for ex in bld.path.ant_glob('*.cpp'): | ||||
8 | name = ex.change_ext('').path_from(bld.path.get_bld()) | ||||
9 | bld.program(name='example-%s' % name, | ||||
10 | target='psync-%s' % name, | ||||
11 | source=[ex], | ||||
12 | use='PSync') |