Files
ndn-tools/tools/dissect/wscript
T
Alexander Afanasyev 20c85cb868 build: Cleanup and update of build scripts
Change-Id: I7fb5b8696d3b068249ae16b117bd27646d990dc3
2018-03-11 17:16:15 -04:00

15 lines
397 B
Python

# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
top = '../..'
def build(bld):
bld.objects(
target='dissect-objects',
source=bld.path.ant_glob('*.cpp', excl='main.cpp'),
use='core-objects')
bld.program(
target='../../bin/ndn-dissect',
name='ndn-dissect',
source='main.cpp',
use='dissect-objects')