blob: 7c55872e17c436dab4ed89169623f287d1e08cc3 [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3top = '..'
4
5def build(bld):
Alexander Afanasyevd409d592014-01-28 18:36:38 -08006 unittests = bld.program (
Alexander Afanasyev19508852014-01-29 01:01:51 -08007 target="../unit-tests",
Alexander Afanasyevd409d592014-01-28 18:36:38 -08008 features = "cxx cxxprogram",
9 source = bld.path.ant_glob(['**/*.cpp']),
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080010 use = 'ndn-cpp-dev',
Alexander Afanasyevd409d592014-01-28 18:36:38 -080011 install_prefix = None,
12 )