blob: a66bfc47fdba06430e26c011fd86f7883283d145 [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
hilata198cadb2014-02-15 23:46:19 -06005import os
Alexander Afanasyev2aa39622014-01-22 11:51:11 -08006
7def options(opt):
8 opt.load('compiler_cxx')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -08009 opt.load('boost doxygen coverage unix-socket', tooldir=['.waf-tools'])
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080010
11 nfdopt = opt.add_option_group('NFD Options')
12 nfdopt.add_option('--debug',action='store_true',default=False,dest='debug',help='''Compile library debugging mode without all optimizations (-O0)''')
13 nfdopt.add_option('--with-tests', action='store_true',default=False,dest='with_tests',help='''Build unit tests''')
14 nfdopt.add_option('--with-ndn-cpp',action='store',type='string',default=None,dest='ndn_cpp_dir',
15 help='''Use NDN-CPP library from the specified path''')
16
17def configure(conf):
18 conf.load("compiler_cxx boost")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -080019 try:
20 conf.load("doxygen")
21 except:
22 pass
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080023
24 if conf.options.debug:
25 conf.define ('_DEBUG', 1)
26 conf.add_supported_cxxflags (cxxflags = ['-O0',
27 '-Wall',
28 '-Wno-unused-variable',
29 '-g3',
30 '-Wno-unused-private-field', # only clang supports
31 '-fcolor-diagnostics', # only clang supports
32 '-Qunused-arguments', # only clang supports
33 '-Wno-tautological-compare', # suppress warnings from CryptoPP
34 '-Wno-unused-function', # suppress warnings from CryptoPP
35 ])
36 else:
37 conf.add_supported_cxxflags (cxxflags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function'])
38
39 if not conf.options.ndn_cpp_dir:
40 conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True)
41 else:
42 conf.check_cxx(lib='ndn-cpp-dev', uselib_store='NDN_CPP',
43 cxxflags="-I%s/include" % conf.options.ndn_cpp_dir,
44 linkflags="-L%s/lib" % conf.options.ndn_cpp_dir,
45 mandatory=True)
46
47 boost_libs='system'
48 if conf.options.with_tests:
49 conf.env['WITH_TESTS'] = 1
Junxiao Shi88884492014-02-15 15:57:43 -070050 conf.define('WITH_TESTS', 1);
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080051 boost_libs+=' unit_test_framework'
52
53 conf.check_boost(lib=boost_libs)
54
Alexander Afanasyeve1724c42014-02-26 22:00:54 -080055 if conf.env.BOOST_VERSION_NUMBER < 104800:
56 Logs.error ("Minimum required boost version is 1.48.0")
Alexander Afanasyevbfd31de2014-02-26 13:20:08 -080057 Logs.error ("Please upgrade your distribution or install custom boost libraries" +
58 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080059 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080060
61 conf.load('unix-socket')
Junxiao Shi61c5ef32014-01-24 20:59:30 -070062
63 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
64
Alexander Afanasyev689569b2014-02-16 20:20:07 -080065 conf.load('coverage')
66
Junxiao Shi61c5ef32014-01-24 20:59:30 -070067 conf.write_config_header('daemon/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080068
Junxiao Shi09bf7c42014-01-31 11:10:25 -070069def build(bld):
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080070 nfd_objects = bld(
71 target = "nfd-objects",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070072 features = "cxx",
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080073 source = bld.path.ant_glob(['daemon/**/*.cpp'],
74 excl=['daemon/**/unix-*.cpp', 'daemon/main.cpp']),
Junxiao Shi61c5ef32014-01-24 20:59:30 -070075 use = 'BOOST NDN_CPP RT',
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080076 includes = [".", "daemon"],
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070077 )
78
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080079 if bld.env['HAVE_UNIX_SOCKETS']:
80 nfd_objects.source += bld.path.ant_glob(['daemon/**/unix-*.cpp'],
81 excl=['daemon/main.cpp'])
82
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080083 bld(target = "nfd",
84 features = "cxx cxxprogram",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070085 source = 'daemon/main.cpp',
86 use = 'nfd-objects',
Junxiao Shi09bf7c42014-01-31 11:10:25 -070087 includes = [".", "daemon"],
hilata198cadb2014-02-15 23:46:19 -060088 )
89
90 for app in bld.path.ant_glob('tools/*.cpp'):
91 bld(features=['cxx', 'cxxprogram'],
92 target = 'bin/%s' % (str(app.change_ext(''))),
93 source = ['tools/%s' % (str(app))],
94 use = 'BOOST NDN_CPP RT',
95 )
96
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080097 # Unit tests
98 if bld.env['WITH_TESTS']:
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080099 unit_tests = unittests = bld.program (
100 target="unit-tests",
101 features = "cxx cxxprogram",
102 source = bld.path.ant_glob(['tests/**/*.cpp'],
103 excl=['tests/**/unix-*.cpp']),
104 use = 'nfd-objects',
105 includes = [".", "daemon"],
106 install_prefix = None,
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800107 )
108
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800109 if bld.env['HAVE_UNIX_SOCKETS']:
110 unit_tests.source += bld.path.ant_glob(['tests/**/unix-*.cpp'])
111
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800112@Configure.conf
113def add_supported_cxxflags(self, cxxflags):
114 """
115 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
116 """
117 self.start_msg('Checking allowed flags for c++ compiler')
118
119 supportedFlags = []
120 for flag in cxxflags:
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800121 if self.check_cxx(cxxflags=[flag], mandatory=False):
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800122 supportedFlags += [flag]
123
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800124 self.end_msg(' '.join (supportedFlags))
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800125 self.env.CXXFLAGS += supportedFlags
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800126
127# doxygen docs
128from waflib.Build import BuildContext
129class doxy(BuildContext):
130 cmd = "doxygen"
131 fun = "doxygen"
132
133def doxygen(bld):
134 if not bld.env.DOXYGEN:
135 bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
136 bld(features="doxygen",
137 doxyfile='docs/doxygen.conf')
hilata198cadb2014-02-15 23:46:19 -0600138