blob: 3562e455f65aa8b15bf62a3b0c3f541277071ba3 [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 Afanasyevc78b1412014-02-19 14:08:26 -08008 opt.load('boost doxygen coverage unix-socket', 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
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080058
59 conf.load('unix-socket')
Junxiao Shi61c5ef32014-01-24 20:59:30 -070060
61 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
62
Alexander Afanasyev689569b2014-02-16 20:20:07 -080063 conf.load('coverage')
64
Junxiao Shi61c5ef32014-01-24 20:59:30 -070065 conf.write_config_header('daemon/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080066
Junxiao Shi09bf7c42014-01-31 11:10:25 -070067def build(bld):
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080068 nfd_objects = bld(
69 target = "nfd-objects",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070070 features = "cxx",
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080071 source = bld.path.ant_glob(['daemon/**/*.cpp'],
72 excl=['daemon/**/unix-*.cpp', 'daemon/main.cpp']),
Junxiao Shi61c5ef32014-01-24 20:59:30 -070073 use = 'BOOST NDN_CPP RT',
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080074 includes = [".", "daemon"],
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070075 )
76
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080077 if bld.env['HAVE_UNIX_SOCKETS']:
78 nfd_objects.source += bld.path.ant_glob(['daemon/**/unix-*.cpp'],
79 excl=['daemon/main.cpp'])
80
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080081 bld(target = "nfd",
82 features = "cxx cxxprogram",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070083 source = 'daemon/main.cpp',
84 use = 'nfd-objects',
Junxiao Shi09bf7c42014-01-31 11:10:25 -070085 includes = [".", "daemon"],
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080086 )
87
88 # Unit tests
89 if bld.env['WITH_TESTS']:
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080090 unit_tests = unittests = bld.program (
91 target="unit-tests",
92 features = "cxx cxxprogram",
93 source = bld.path.ant_glob(['tests/**/*.cpp'],
94 excl=['tests/**/unix-*.cpp']),
95 use = 'nfd-objects',
96 includes = [".", "daemon"],
97 install_prefix = None,
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080098 )
99
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800100 if bld.env['HAVE_UNIX_SOCKETS']:
101 unit_tests.source += bld.path.ant_glob(['tests/**/unix-*.cpp'])
102
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800103@Configure.conf
104def add_supported_cxxflags(self, cxxflags):
105 """
106 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
107 """
108 self.start_msg('Checking allowed flags for c++ compiler')
109
110 supportedFlags = []
111 for flag in cxxflags:
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800112 if self.check_cxx(cxxflags=[flag], mandatory=False):
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800113 supportedFlags += [flag]
114
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800115 self.end_msg(' '.join (supportedFlags))
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800116 self.env.CXXFLAGS += supportedFlags
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800117
118# doxygen docs
119from waflib.Build import BuildContext
120class doxy(BuildContext):
121 cmd = "doxygen"
122 fun = "doxygen"
123
124def doxygen(bld):
125 if not bld.env.DOXYGEN:
126 bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
127 bld(features="doxygen",
128 doxyfile='docs/doxygen.conf')