Alexander Afanasyev | 3fd14f0 | 2014-03-26 14:34:39 -0700 | [diff] [blame^] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 | |||||
3 | from waflib import Utils | ||||
4 | |||||
5 | top = '..' | ||||
6 | |||||
7 | def build(bld): | ||||
8 | unittests = bld.program( | ||||
9 | target = "../unit-tests", | ||||
10 | features = "cxx cxxprogram", | ||||
11 | source = bld.path.ant_glob(['**/*.cpp']), | ||||
12 | use = 'ndn-repo-objects', | ||||
13 | install_path = None, | ||||
14 | ) |