blob: c65b260219bc9afb67d80cad7db6cf1d61ff8239 [file] [log] [blame]
Alexander Afanasyev3fd14f02014-03-26 14:34:39 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3from waflib import Utils
4
5top = '..'
6
7def 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 )