fae9def359
* Upgrade waf to 2.0.14 * Sync default compiler flags with ndn-cxx * Simplify compilation of unit-tests Change-Id: I94865d405240c181dd4cfdd1cb730b756ad5166a
11 lines
310 B
Python
11 lines
310 B
Python
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
top = '..'
|
|
|
|
def build(bld):
|
|
bld.program(target='../unit-tests',
|
|
name='unit-tests',
|
|
source=bld.path.ant_glob('**/*.cpp'),
|
|
use='ChronoSync',
|
|
install_path=None)
|