blob: c3b46b1901c002c8988332d09f93af4adcb00b38 [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',
59 )
60
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080061 bld(target = "nfd",
62 features = "cxx cxxprogram",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070063 source = 'daemon/main.cpp',
64 use = 'nfd-objects',
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080065 )
66
67 # Unit tests
68 if bld.env['WITH_TESTS']:
69 unittests = bld.program (
70 target="unit-tests",
71 features = "cxx cxxprogram",
Junxiao Shi1a2a8562014-01-23 10:07:59 -070072 source = bld.path.ant_glob(['tests/**/*.cpp']),
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070073 use = 'nfd-objects',
Junxiao Shi1a2a8562014-01-23 10:07:59 -070074 includes = [".", "daemon"],
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080075 install_prefix = None,
76 )
77
78@Configure.conf
79def add_supported_cxxflags(self, cxxflags):
80 """
81 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
82 """
83 self.start_msg('Checking allowed flags for c++ compiler')
84
85 supportedFlags = []
86 for flag in cxxflags:
87 if self.check_cxx (cxxflags=[flag], mandatory=False):
88 supportedFlags += [flag]
89
90 self.end_msg (' '.join (supportedFlags))
91 self.env.CXXFLAGS += supportedFlags