Junxiao Shi | e5adbfd | 2015-06-18 14:42:06 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | top = '../..' |
| 3 | |
| 4 | def build(bld): |
Junxiao Shi | 78c78cc | 2015-06-19 15:53:53 -0700 | [diff] [blame^] | 5 | bld(features='cxx', |
| 6 | name='dissect-objects', |
| 7 | source=bld.path.ant_glob('*.cpp', excl='main.cpp'), |
| 8 | includes='.', |
| 9 | export_includes='.', |
Junxiao Shi | e5adbfd | 2015-06-18 14:42:06 -0700 | [diff] [blame] | 10 | use='core-objects', |
| 11 | ) |
Junxiao Shi | 78c78cc | 2015-06-19 15:53:53 -0700 | [diff] [blame^] | 12 | |
| 13 | bld(features='cxx cxxprogram', |
| 14 | target='../../bin/ndn-dissect', |
| 15 | source='main.cpp', |
| 16 | use='dissect-objects', |
| 17 | ) |