Davide Pesavento | 25d4f1c | 2020-04-29 23:31:04 -0400 | [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 | bld.objects(target='tool-ndnsec-objects', | ||||
7 | source=bld.path.ant_glob('*.cpp', excl=['main.cpp']), | ||||
8 | features='pch', | ||||
9 | headers='ndnsec-pch.hpp', | ||||
10 | use='ndn-cxx') | ||||
11 | bld.program(name='tool-ndnsec', | ||||
12 | target=top + 'bin/ndnsec', | ||||
13 | source=['main.cpp'], | ||||
14 | use='tool-ndnsec-objects') |