blob: 8f1f372cf5be38f7494fae35e1ff48de1d3c7cc1 [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
53
54def build (bld):
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070055 bld(target = "nfd-objects",
56 features = "cxx",
57 source = bld.path.ant_glob(['daemon/**/*.cpp'], excl=['daemon/main.cpp']),
58 use = 'BOOST NDN_CPP',
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080059 includes = [".", "daemon"],
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070060 )
61
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080062 bld(target = "nfd",
63 features = "cxx cxxprogram",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070064 source = 'daemon/main.cpp',
65 use = 'nfd-objects',
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080066 )
67
68 # Unit tests
69 if bld.env['WITH_TESTS']:
70 unittests = bld.program (
71 target="unit-tests",
72 features = "cxx cxxprogram",
Junxiao Shi1a2a8562014-01-23 10:07:59 -070073 source = bld.path.ant_glob(['tests/**/*.cpp']),
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070074 use = 'nfd-objects',
Junxiao Shi1a2a8562014-01-23 10:07:59 -070075 includes = [".", "daemon"],
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080076 install_prefix = None,
77 )
78
79@Configure.conf
80def add_supported_cxxflags(self, cxxflags):
81 """
82 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
83 """
84 self.start_msg('Checking allowed flags for c++ compiler')
85
86 supportedFlags = []
87 for flag in cxxflags:
88 if self.check_cxx (cxxflags=[flag], mandatory=False):
89 supportedFlags += [flag]
90
91 self.end_msg (' '.join (supportedFlags))
92 self.env.CXXFLAGS += supportedFlags