blob: b7f96c975e64636d209fb7f0e7fa08897c546c22 [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
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070035 '-fno-inline',
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080036 ])
37 else:
38 conf.add_supported_cxxflags (cxxflags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function'])
39
40 if not conf.options.ndn_cpp_dir:
41 conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDN_CPP', mandatory=True)
42 else:
43 conf.check_cxx(lib='ndn-cpp-dev', uselib_store='NDN_CPP',
44 cxxflags="-I%s/include" % conf.options.ndn_cpp_dir,
45 linkflags="-L%s/lib" % conf.options.ndn_cpp_dir,
46 mandatory=True)
47
48 boost_libs='system'
49 if conf.options.with_tests:
50 conf.env['WITH_TESTS'] = 1
Junxiao Shi88884492014-02-15 15:57:43 -070051 conf.define('WITH_TESTS', 1);
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080052 boost_libs+=' unit_test_framework'
53
54 conf.check_boost(lib=boost_libs)
55
Alexander Afanasyeve1724c42014-02-26 22:00:54 -080056 if conf.env.BOOST_VERSION_NUMBER < 104800:
57 Logs.error ("Minimum required boost version is 1.48.0")
Alexander Afanasyevbfd31de2014-02-26 13:20:08 -080058 Logs.error ("Please upgrade your distribution or install custom boost libraries" +
59 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080060 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080061
62 conf.load('unix-socket')
Junxiao Shi61c5ef32014-01-24 20:59:30 -070063
64 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
65
Alexander Afanasyev689569b2014-02-16 20:20:07 -080066 conf.load('coverage')
67
Junxiao Shi61c5ef32014-01-24 20:59:30 -070068 conf.write_config_header('daemon/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080069
Junxiao Shi09bf7c42014-01-31 11:10:25 -070070def build(bld):
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080071 nfd_objects = bld(
72 target = "nfd-objects",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070073 features = "cxx",
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080074 source = bld.path.ant_glob(['daemon/**/*.cpp'],
75 excl=['daemon/**/unix-*.cpp', 'daemon/main.cpp']),
Junxiao Shi61c5ef32014-01-24 20:59:30 -070076 use = 'BOOST NDN_CPP RT',
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080077 includes = [".", "daemon"],
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070078 )
79
Alexander Afanasyevc78b1412014-02-19 14:08:26 -080080 if bld.env['HAVE_UNIX_SOCKETS']:
81 nfd_objects.source += bld.path.ant_glob(['daemon/**/unix-*.cpp'],
82 excl=['daemon/main.cpp'])
83
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080084 bld(target = "nfd",
85 features = "cxx cxxprogram",
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070086 source = 'daemon/main.cpp',
87 use = 'nfd-objects',
Junxiao Shi09bf7c42014-01-31 11:10:25 -070088 includes = [".", "daemon"],
hilata198cadb2014-02-15 23:46:19 -060089 )
90
91 for app in bld.path.ant_glob('tools/*.cpp'):
92 bld(features=['cxx', 'cxxprogram'],
93 target = 'bin/%s' % (str(app.change_ext(''))),
94 source = ['tools/%s' % (str(app))],
95 use = 'BOOST NDN_CPP RT',
96 )
97
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080098 # Unit tests
99 if bld.env['WITH_TESTS']:
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800100 unit_tests = unittests = bld.program (
101 target="unit-tests",
102 features = "cxx cxxprogram",
103 source = bld.path.ant_glob(['tests/**/*.cpp'],
104 excl=['tests/**/unix-*.cpp']),
105 use = 'nfd-objects',
106 includes = [".", "daemon"],
107 install_prefix = None,
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800108 )
109
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800110 if bld.env['HAVE_UNIX_SOCKETS']:
111 unit_tests.source += bld.path.ant_glob(['tests/**/unix-*.cpp'])
112
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800113@Configure.conf
114def add_supported_cxxflags(self, cxxflags):
115 """
116 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
117 """
118 self.start_msg('Checking allowed flags for c++ compiler')
119
120 supportedFlags = []
121 for flag in cxxflags:
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800122 if self.check_cxx(cxxflags=[flag], mandatory=False):
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800123 supportedFlags += [flag]
124
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800125 self.end_msg(' '.join (supportedFlags))
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800126 self.env.CXXFLAGS += supportedFlags
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800127
128# doxygen docs
129from waflib.Build import BuildContext
130class doxy(BuildContext):
131 cmd = "doxygen"
132 fun = "doxygen"
133
134def doxygen(bld):
135 if not bld.env.DOXYGEN:
136 bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
137 bld(features="doxygen",
138 doxyfile='docs/doxygen.conf')
hilata198cadb2014-02-15 23:46:19 -0600139