blob: f0b04ac6d6399cad699913eb30c5be05412d85de [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')
Alexander Afanasyev689569b2014-02-16 20:20:07 -08008 opt.load('boost doxygen coverage', tooldir=['.waf-tools'])
Alexander Afanasyev2aa39622014-01-22 11:51:11 -08009
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")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -080018 try:
19 conf.load("doxygen")
20 except:
21 pass
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080022
23 if conf.options.debug:
24 conf.define ('_DEBUG', 1)
25 conf.add_supported_cxxflags (cxxflags = ['-O0',
26 '-Wall',
27 '-Wno-unused-variable',
28 '-g3',
29 '-Wno-unused-private-field', # only clang supports
30 '-fcolor-diagnostics', # only clang supports
31 '-Qunused-arguments', # only clang supports
32 '-Wno-tautological-compare', # suppress warnings from CryptoPP
33 '-Wno-unused-function', # suppress warnings from CryptoPP
34 ])
35 else:
36 conf.add_supported_cxxflags (cxxflags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function'])
37
38 if not conf.options.ndn_cpp_dir:
39 conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True)
40 else:
41 conf.check_cxx(lib='ndn-cpp-dev', uselib_store='NDN_CPP',
42 cxxflags="-I%s/include" % conf.options.ndn_cpp_dir,
43 linkflags="-L%s/lib" % conf.options.ndn_cpp_dir,
44 mandatory=True)
45
46 boost_libs='system'
47 if conf.options.with_tests:
48 conf.env['WITH_TESTS'] = 1
Junxiao Shi88884492014-02-15 15:57:43 -070049 conf.define('WITH_TESTS', 1);
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080050 boost_libs+=' unit_test_framework'
51
52 conf.check_boost(lib=boost_libs)
53
54 boost_version = conf.env.BOOST_VERSION.split('_')
55 if int(boost_version[0]) < 1 or int(boost_version[1]) < 42:
56 Logs.error ("Minumum required boost version is 1.42")
57 return
Junxiao Shi61c5ef32014-01-24 20:59:30 -070058
59 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
60
Alexander Afanasyev689569b2014-02-16 20:20:07 -080061 conf.load('coverage')
62
Junxiao Shi61c5ef32014-01-24 20:59:30 -070063 conf.write_config_header('daemon/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080064
Junxiao Shi09bf7c42014-01-31 11:10:25 -070065def build(bld):
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070066 bld(target = "nfd-objects",
67 features = "cxx",
68 source = bld.path.ant_glob(['daemon/**/*.cpp'], excl=['daemon/main.cpp']),
Junxiao Shi61c5ef32014-01-24 20:59:30 -070069 use = 'BOOST NDN_CPP RT',
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080070 includes = [".", "daemon"],
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070071 )
72
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080073 bld(target = "nfd",
74 features = "cxx cxxprogram",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070075 source = 'daemon/main.cpp',
76 use = 'nfd-objects',
Junxiao Shi09bf7c42014-01-31 11:10:25 -070077 includes = [".", "daemon"],
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080078 )
79
80 # Unit tests
81 if bld.env['WITH_TESTS']:
82 unittests = bld.program (
83 target="unit-tests",
84 features = "cxx cxxprogram",
Junxiao Shi1a2a8562014-01-23 10:07:59 -070085 source = bld.path.ant_glob(['tests/**/*.cpp']),
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070086 use = 'nfd-objects',
Junxiao Shi1a2a8562014-01-23 10:07:59 -070087 includes = [".", "daemon"],
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080088 install_prefix = None,
89 )
90
91@Configure.conf
92def add_supported_cxxflags(self, cxxflags):
93 """
94 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
95 """
96 self.start_msg('Checking allowed flags for c++ compiler')
97
98 supportedFlags = []
99 for flag in cxxflags:
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800100 if self.check_cxx(cxxflags=[flag], mandatory=False):
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800101 supportedFlags += [flag]
102
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800103 self.end_msg(' '.join (supportedFlags))
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800104 self.env.CXXFLAGS += supportedFlags
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800105
106# doxygen docs
107from waflib.Build import BuildContext
108class doxy(BuildContext):
109 cmd = "doxygen"
110 fun = "doxygen"
111
112def doxygen(bld):
113 if not bld.env.DOXYGEN:
114 bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
115 bld(features="doxygen",
116 doxyfile='docs/doxygen.conf')