blob: 03a1b9395b5376decd887849b72dfabd342b1394 [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):
6 if bld.env['WITH_EXAMPLES']:
7 for app in bld.path.ant_glob('*.cpp'):
8 bld(features=['cxx', 'cxxprogram'],
9 target='%s' % (str(app.change_ext('', '.cpp'))),
10 source=app,
11 use='NDN_CXX',
12 includes="../src",
13 install_path=None,
14 )