blob: ad201d1dbd1f78892c6640f5718e0b7acce97105 [file] [log] [blame]
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
from waflib import Utils
import os
VERSION = '0.1'
APPNAME = 'ndn-traffic-generator'
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'])
pkg_config_path = os.environ.get('PKG_CONFIG_PATH', f'{conf.env.LIBDIR}/pkgconfig')
conf.check_cfg(package='libndn-cxx', args=['libndn-cxx >= 0.8.0', '--cflags', '--libs'],
uselib_store='NDN_CXX', pkg_config_path=pkg_config_path)
conf.check_compiler_flags()
def build(bld):
bld.program(target='ndn-traffic-client',
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'])
if Utils.unversioned_sys_platform() == 'linux':
systemd_units = bld.path.ant_glob('systemd/*.in')
bld(features='subst',
name='systemd-units',
source=systemd_units,
target=[u.change_ext('') for u in systemd_units])