blob: 8c234685fab0bd3221f3b149c754329510d62d8e [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2VERSION='0.3~dev0'
3NAME="ndn-cpp-dev"
4
5from waflib import Build, Logs, Utils, Task, TaskGen, Configure
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -08006from waflib.Tools import c_preproc
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08007
8def options(opt):
9 opt.load('compiler_c compiler_cxx gnu_dirs c_osx')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080010 opt.load('boost doxygen openssl cryptopp coverage', tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080011
12 opt = opt.add_option_group('NDN-CPP Options')
13
14 opt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080015
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080016 opt.add_option('--with-tests', action='store_true',default=False,dest='with_tests',
17 help='''build unit tests''')
18 opt.add_option('--with-log4cxx', action='store_true',default=False,dest='log4cxx',
19 help='''Compile with log4cxx logging support''')
20
21 opt.add_option('--with-c++11', action='store_true', default=False, dest='use_cxx11',
22 help='''Use C++11 features, even if available in the compiler''')
23 opt.add_option('--without-system-boost', action='store_false', default=True, dest='use_system_boost',
24 help='''Use system's boost libraries''')
Yingdi Yue6bfab22014-02-06 16:01:19 -080025 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
26 help='''Do not build tools''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080027
Alexander Afanasyev5b60f702014-02-07 12:55:24 -080028 opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking',
29 help='''Disable filesystem locking in sqlite3 database (use unix-dot locking mechanism instead). '''
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080030 '''This option may be necessary if home directory is hosted on NFS.''')
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080031 opt.add_option('--with-pch', action='store_true', default=False, dest='with_pch',
32 help='''Try to use precompiled header to speed up compilation (only gcc and clang)''')
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080033 opt.add_option('--without-osx-keychain', action='store_false', default=True, dest='with_osx_keychain',
34 help='''On Darwin, do not use OSX keychain as a default TPM''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080035
36def configure(conf):
37 conf.load("compiler_c compiler_cxx boost gnu_dirs c_osx openssl cryptopp")
38 try:
39 conf.load("doxygen")
40 except:
41 pass
42
43 if conf.options.with_tests:
44 conf.env['WITH_TESTS'] = True
45
Yingdi Yue6bfab22014-02-06 16:01:19 -080046 if conf.options.with_tools:
47 conf.env['WITH_TOOLS'] = True
48
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080049 conf.check_openssl()
50
51 if conf.options.debug:
52 conf.define ('_DEBUG', 1)
53 flags = ['-O0',
54 '-Wall',
55 # '-Werror',
56 '-Wno-unused-variable',
57 '-g3',
58 '-Wno-unused-private-field', # only clang supports
59 '-fcolor-diagnostics', # only clang supports
60 '-Qunused-arguments', # only clang supports
61 '-Wno-tautological-compare', # suppress warnings from CryptoPP
62 '-Wno-unused-function', # another annoying warning from CryptoPP
63
64 '-Wno-deprecated-declarations',
65 ]
66
67 conf.add_supported_cxxflags (cxxflags = flags)
68 else:
69 flags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function', '-Wno-deprecated-declarations']
70 conf.add_supported_cxxflags (cxxflags = flags)
71
72 if Utils.unversioned_sys_platform () == "darwin":
73 conf.check_cxx(framework_name='CoreFoundation', uselib_store='OSX_COREFOUNDATION', mandatory=True)
Alexander Afanasyevd409d592014-01-28 18:36:38 -080074 conf.check_cxx(framework_name='CoreServices', uselib_store='OSX_CORESERVICES', mandatory=True)
75 conf.check_cxx(framework_name='Security', uselib_store='OSX_SECURITY', define_name='HAVE_SECURITY',
76 use="OSX_COREFOUNDATION", mandatory=True)
77 conf.define('HAVE_OSX_SECURITY', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080078
79 conf.define ("PACKAGE_BUGREPORT", "ndn-lib@lists.cs.ucla.edu")
80 conf.define ("PACKAGE_NAME", NAME)
81 conf.define ("PACKAGE_VERSION", VERSION)
82 conf.define ("PACKAGE_URL", "https://github.com/named-data/ndn-cpp")
83
84 conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', mandatory=True)
85
86 if conf.options.log4cxx:
87 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True)
88 conf.define ("HAVE_LOG4CXX", 1)
89
90 conf.check_cryptopp(path=conf.options.cryptopp_dir, mandatory=True)
91
92 if conf.options.use_cxx11:
93 conf.add_supported_cxxflags(cxxflags = ['-std=c++11', '-std=c++0x'])
94
95 conf.check(msg='Checking for type std::shared_ptr',
96 type_name="std::shared_ptr<int>", header_name="memory", define_name='HAVE_STD_SHARED_PTR')
97 conf.check(msg='Checking for type std::function',
98 type_name="std::function<void()>", header_name="functional", define_name='HAVE_STD_FUNCTION')
99 conf.define('HAVE_CXX11', 1)
100 else:
101 if conf.options.use_system_boost:
Yingdi Yue6bfab22014-02-06 16:01:19 -0800102 USED_BOOST_LIBS = 'system filesystem date_time iostreams regex program_options'
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800103 if conf.env['WITH_TESTS']:
104 USED_BOOST_LIBS += " unit_test_framework"
105
106 conf.check_boost(lib=USED_BOOST_LIBS)
107
108 boost_version = conf.env.BOOST_VERSION.split('_')
109 if int(boost_version[0]) > 1 or (int(boost_version[0]) == 1 and int(boost_version[1]) >= 46):
110 conf.env['USE_SYSTEM_BOOST'] = True
111 conf.define('USE_SYSTEM_BOOST', 1)
112
Alexander Afanasyevc6d795f2014-01-29 15:13:59 -0800113 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
Alexander Afanasyev19508852014-01-29 01:01:51 -0800114 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800115 conf.check_cxx(cxxflags=['-fPIC'], uselib_store='cxxstlib', mandatory=False)
Alexander Afanasyev19508852014-01-29 01:01:51 -0800116
Alexander Afanasyev5b60f702014-02-07 12:55:24 -0800117 if not conf.options.with_sqlite_locking:
118 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800119
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800120 conf.env['WITH_PCH'] = conf.options.with_pch
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -0800121
122 if Utils.unversioned_sys_platform () == "darwin":
123 conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain
124 if conf.options.with_osx_keychain:
125 conf.define('WITH_OSX_KEYCHAIN', 1)
126 else:
127 conf.env['WITH_OSX_KEYCHAIN'] = False
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800128
129 conf.load("coverage")
130
Alexander Afanasyev09c613f2014-01-29 00:23:58 -0800131 conf.write_config_header('src/ndn-cpp-config.h', define_prefix='NDN_CPP_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800132
133def build (bld):
134 libndn_cpp = bld (
Alexander Afanasyev59efe102014-01-29 15:56:30 -0800135 features=['cxx', 'cxxstlib'], # 'cxxshlib',
136 # vnum = "0.3.0",
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800137 target="ndn-cpp-dev",
138 name = "ndn-cpp-dev",
139 source = bld.path.ant_glob('src/**/*.cpp',
140 excl = ['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']),
Alexander Afanasyev88c69452014-02-11 18:13:41 -0800141 use = 'BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD',
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800142 includes = ". src",
Alexander Afanasyev09c613f2014-01-29 00:23:58 -0800143 export_includes = "src",
Alexander Afanasyevc6d795f2014-01-29 15:13:59 -0800144 install_path = '${LIBDIR}',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800145 )
146
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800147 if bld.env['WITH_PCH']:
148 libndn_cpp.pch = "src/common.hpp"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800149
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800150 if Utils.unversioned_sys_platform () == "darwin":
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800151 libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800152 libndn_cpp.mac_app = True
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800153 libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800154
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800155 # In case we want to make it optional later
156 libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp')
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800157
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800158
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800159 pkgconfig_libs = []
160 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800161 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800162 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800163 pkgconfig_cxxflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800164 for lib in Utils.to_list(libndn_cpp.use):
165 if bld.env['LIB_%s' % lib]:
166 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
167 if bld.env['LIBPATH_%s' % lib]:
168 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
169 if bld.env['INCLUDES_%s' % lib]:
170 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800171 if bld.env['LINKFLAGS_%s' % lib]:
172 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
173 if bld.env['CXXFLAGS_%s' % lib]:
174 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800175
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800176 EXTRA_FRAMEWORKS = "";
177 if Utils.unversioned_sys_platform () == "darwin":
178 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800179
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800180 def uniq(alist):
181 set = {}
182 return [set.setdefault(e,e) for e in alist if e not in set]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800183
184 pkconfig = bld (features = "subst",
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800185 source = "libndn-cpp-dev.pc.in",
186 target = "libndn-cpp-dev.pc",
187 install_path = "${LIBDIR}/pkgconfig",
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800188 VERSION = VERSION,
189
190 # This probably not the right thing to do, but to simplify life of apps
191 # that use the library
192 EXTRA_LIBS = " ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
193 EXTRA_LDFLAGS = " ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800194 EXTRA_LINKFLAGS = " ".join(uniq(pkgconfig_linkflags)),
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800195 EXTRA_INCLUDES = " ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800196 EXTRA_CXXFLAGS = " ".join(uniq(pkgconfig_cxxflags)),
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800197 EXTRA_FRAMEWORKS = EXTRA_FRAMEWORKS,
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800198 )
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800199
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800200 # Unit tests
201 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800202 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800203
Yingdi Yue6bfab22014-02-06 16:01:19 -0800204 if bld.env['WITH_TOOLS']:
205 bld.recurse("tools examples")
206 else:
207 bld.recurse("examples")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800208
Alexander Afanasyev19508852014-01-29 01:01:51 -0800209 headers = bld.path.ant_glob(['src/**/*.hpp'])
210 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], headers, relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800211
Alexander Afanasyev19508852014-01-29 01:01:51 -0800212 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], bld.path.find_resource('src/ndn-cpp-config.h'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800213
214@Configure.conf
215def add_supported_cxxflags(self, cxxflags):
216 """
217 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
218 """
219 self.start_msg('Checking allowed flags for c++ compiler')
220
221 supportedFlags = []
222 for flag in cxxflags:
223 if self.check_cxx (cxxflags=[flag], mandatory=False):
224 supportedFlags += [flag]
225
226 self.end_msg (' '.join (supportedFlags))
227 self.env.CXXFLAGS += supportedFlags
228
229# doxygen docs
230from waflib.Build import BuildContext
231class doxy (BuildContext):
232 cmd = "doxygen"
233 fun = "doxygen"
234
235def doxygen (bld):
236 if not bld.env.DOXYGEN:
237 bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
238 bld (features="doxygen",
239 doxyfile='Doxyfile')
240
241# doxygen docs
242from waflib.Build import BuildContext
243class sphinx (BuildContext):
244 cmd = "sphinx"
245 fun = "sphinx"
246
247def sphinx (bld):
248 bld.load('sphinx_build', tooldir=['waf-tools'])
249
250 bld (features="sphinx",
251 outdir = "doc/html",
252 source = "doc/source/conf.py")
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800253
254
255@TaskGen.feature('cxx')
256@TaskGen.before('process_source')
257def process_pch(self):
258 if getattr(self, 'pch', ''):
259 # for now support only gcc-compatible things
260 if self.env['COMPILER_CXX'] == 'g++':
261 nodes = self.to_nodes(self.pch, path=self.path)
262 for x in nodes:
263 z = self.create_task('gchx', x, x.change_ext('.hpp.gch'))
264 z.orig_self = self
265
266class gchx(Task.Task):
267 run_str = '${CXX} -x c++-header ${CXXFLAGS} ${FRAMEWORKPATH_ST:FRAMEWORKPATH} ${CPPPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ${CXX_SRC_F}${SRC} ${CXX_TGT_F}${TGT}'
268 scan = c_preproc.scan
269 ext_out = ['.hpp']
270 color = 'BLUE'
271
272 def post_run(self):
273 super(gchx, self).post_run()
274 self.orig_self.env['CXXFLAGS'] = ['-include', self.inputs[0].relpath()] + self.env['CXXFLAGS']