blob: ef6b92fa0e4d93dd3de5fdf77892f1329b2f445b [file] [log] [blame]
Alexander Afanasyev2aa39622014-01-22 11:51:11 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2VERSION='0.1'
3
4from waflib import Build, Logs, Utils, Task, TaskGen, Configure
5
6def options(opt):
7 opt.load('compiler_cxx')
8 opt.load('boost', tooldir=['.waf-tools'])
9
10 nfdopt = opt.add_option_group('NFD Options')
11 nfdopt.add_option('--debug',action='store_true',default=False,dest='debug',help='''Compile library debugging mode without all optimizations (-O0)''')
12 nfdopt.add_option('--with-tests', action='store_true',default=False,dest='with_tests',help='''Build unit tests''')
13 nfdopt.add_option('--with-ndn-cpp',action='store',type='string',default=None,dest='ndn_cpp_dir',
14 help='''Use NDN-CPP library from the specified path''')
15
16def configure(conf):
17 conf.load("compiler_cxx boost")
18
19 if conf.options.debug:
20 conf.define ('_DEBUG', 1)
21 conf.add_supported_cxxflags (cxxflags = ['-O0',
22 '-Wall',
23 '-Wno-unused-variable',
24 '-g3',
25 '-Wno-unused-private-field', # only clang supports
26 '-fcolor-diagnostics', # only clang supports
27 '-Qunused-arguments', # only clang supports
28 '-Wno-tautological-compare', # suppress warnings from CryptoPP
29 '-Wno-unused-function', # suppress warnings from CryptoPP
30 ])
31 else:
32 conf.add_supported_cxxflags (cxxflags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function'])
33
34 if not conf.options.ndn_cpp_dir:
35 conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True)
36 else:
37 conf.check_cxx(lib='ndn-cpp-dev', uselib_store='NDN_CPP',
38 cxxflags="-I%s/include" % conf.options.ndn_cpp_dir,
39 linkflags="-L%s/lib" % conf.options.ndn_cpp_dir,
40 mandatory=True)
41
42 boost_libs='system'
43 if conf.options.with_tests:
44 conf.env['WITH_TESTS'] = 1
45 boost_libs+=' unit_test_framework'
46
47 conf.check_boost(lib=boost_libs)
48
49 boost_version = conf.env.BOOST_VERSION.split('_')
50 if int(boost_version[0]) < 1 or int(boost_version[1]) < 42:
51 Logs.error ("Minumum required boost version is 1.42")
52 return
Junxiao Shi61c5ef32014-01-24 20:59:30 -070053
54 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
55
56 conf.write_config_header('daemon/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080057
58def build (bld):
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070059 bld(target = "nfd-objects",
60 features = "cxx",
61 source = bld.path.ant_glob(['daemon/**/*.cpp'], excl=['daemon/main.cpp']),
Junxiao Shi61c5ef32014-01-24 20:59:30 -070062 use = 'BOOST NDN_CPP RT',
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080063 includes = [".", "daemon"],
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070064 )
65
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080066 bld(target = "nfd",
67 features = "cxx cxxprogram",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070068 source = 'daemon/main.cpp',
69 use = 'nfd-objects',
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080070 )
71
72 # Unit tests
73 if bld.env['WITH_TESTS']:
74 unittests = bld.program (
75 target="unit-tests",
76 features = "cxx cxxprogram",
Junxiao Shi1a2a8562014-01-23 10:07:59 -070077 source = bld.path.ant_glob(['tests/**/*.cpp']),
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070078 use = 'nfd-objects',
Junxiao Shi1a2a8562014-01-23 10:07:59 -070079 includes = [".", "daemon"],
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080080 install_prefix = None,
81 )
82
83@Configure.conf
84def add_supported_cxxflags(self, cxxflags):
85 """
86 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
87 """
88 self.start_msg('Checking allowed flags for c++ compiler')
89
90 supportedFlags = []
91 for flag in cxxflags:
92 if self.check_cxx (cxxflags=[flag], mandatory=False):
93 supportedFlags += [flag]
94
95 self.end_msg (' '.join (supportedFlags))
96 self.env.CXXFLAGS += supportedFlags