7eaed5cd3f
Change-Id: I4894a30d0cfc7af5de1d272edb70ce9cc4b6d372
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
|
|
|
|
VERSION = '0.1'
|
|
APPNAME = 'ndn-traffic-generator'
|
|
|
|
from waflib import Utils
|
|
import os
|
|
|
|
def options(opt):
|
|
opt.load(['compiler_cxx', 'gnu_dirs'])
|
|
opt.load(['default-compiler-flags'],
|
|
tooldir=['.waf-tools'])
|
|
|
|
def configure(conf):
|
|
conf.load(['compiler_cxx', 'gnu_dirs',
|
|
'default-compiler-flags'])
|
|
|
|
if 'PKG_CONFIG_PATH' not in os.environ:
|
|
os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
|
|
conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
|
|
uselib_store='NDN_CXX', mandatory=True)
|
|
|
|
conf.check_compiler_flags()
|
|
|
|
def build(bld):
|
|
bld.program(target='ndn-traffic',
|
|
source='src/ndn-traffic-client.cpp',
|
|
use='NDN_CXX')
|
|
|
|
bld.program(target='ndn-traffic-server',
|
|
source='src/ndn-traffic-server.cpp',
|
|
use='NDN_CXX')
|
|
|
|
bld.install_files('${SYSCONFDIR}/ndn', ['ndn-traffic-client.conf.sample',
|
|
'ndn-traffic-server.conf.sample'])
|