blob: 6e49f4e5fb11ff7bb428f6d7cb6a2f6cad305213 [file] [log] [blame]
Weiqi Shi68f2cf62014-08-26 12:35:45 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3top = '..'
4
5def build(bld):
Davide Pesaventoed2f4762019-01-25 00:40:46 -05006 if not bld.env['WITH_EXAMPLES']:
7 return
8
9 for ex in bld.path.ant_glob('*.cpp'):
10 name = ex.change_ext('').path_from(bld.path.get_bld())
11 bld.program(name='example-%s' % name,
12 target=name,
13 source=[ex],
14 use='NDN_CXX',
15 includes='../src',
16 install_path=None)