| # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- | |
| from waflib import Utils | |
| top = '..' | |
| def build(bld): | |
| bld(features="cxx cxxprogram", | |
| target="face", | |
| source="face.cpp", | |
| use='ndn-cxx boost-tests-base BOOST', | |
| includes='..', | |
| install_path=None) | |
| bld(features="cxx cxxprogram", | |
| target="network-monitor", | |
| source="network-monitor.cpp", | |
| use='ndn-cxx boost-tests-base BOOST', | |
| includes='..', | |
| install_path=None) |