blob: f9213f23bc20516a254a46bf013f135998e9e93f [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08002
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05003from waflib import Context, Logs, Utils
4import os, subprocess
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -07005
Alexander Afanasyev778ad712022-01-27 14:01:55 -05006VERSION = '0.8.0'
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05007APPNAME = 'ndn-cxx'
8PACKAGE_BUGREPORT = 'https://redmine.named-data.net/projects/ndn-cxx'
9PACKAGE_URL = 'http://named-data.net/doc/ndn-cxx/'
10GIT_TAG_PREFIX = 'ndn-cxx-'
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070011
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080012def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070013 opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
Alexander Afanasyev39535f42019-07-05 22:07:52 -040014 opt.load(['cross', 'default-compiler-flags', 'compiler-features',
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050015 'coverage', 'pch', 'sanitizers', 'osx-frameworks',
Alexander Afanasyevadc71842017-01-26 22:17:58 -050016 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020017 'doxygen', 'sphinx_build'],
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070018 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080019
Davide Pesavento77f1c762019-02-19 03:20:49 -050020 opt = opt.add_option_group('ndn-cxx Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080021
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070022 opt.add_option('--enable-static', action='store_true', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040023 dest='enable_static', help='Build static library (disabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070024 opt.add_option('--disable-static', action='store_false', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040025 dest='enable_static', help='Do not build static library (disabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080026
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070027 opt.add_option('--enable-shared', action='store_true', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040028 dest='enable_shared', help='Build shared library (enabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070029 opt.add_option('--disable-shared', action='store_false', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040030 dest='enable_shared', help='Do not build shared library (enabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080031
Davide Pesavento77f1c762019-02-19 03:20:49 -050032 opt.add_option('--without-osx-keychain', action='store_false', default=True,
33 dest='with_osx_keychain', help='Do not use macOS Keychain as default TPM (macOS only)')
34
35 opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking',
36 help='Disable filesystem locking in sqlite3 database '
37 '(use unix-dot locking mechanism instead). '
38 'This option may be necessary if the home directory is hosted on NFS.')
39
40 stacktrace_choices = ['backtrace', 'addr2line', 'basic', 'noop']
41 opt.add_option('--with-stacktrace', action='store', default=None, choices=stacktrace_choices,
42 help='Select the stacktrace backend implementation: '
43 '%s [default=auto-detect]' % ', '.join(stacktrace_choices))
44 opt.add_option('--without-stacktrace', action='store_const', const='', dest='with_stacktrace',
45 help='Disable stacktrace support')
46
47 opt.add_option('--with-examples', action='store_true', default=False,
48 help='Build examples')
49
50 opt.add_option('--with-tests', action='store_true', default=False,
51 help='Build tests')
52
53 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
54 help='Do not build tools')
55
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080056def configure(conf):
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080057 conf.start_msg('Building static library')
58 if conf.options.enable_static:
59 conf.end_msg('yes')
60 else:
61 conf.end_msg('no', color='YELLOW')
62 conf.env.enable_static = conf.options.enable_static
63
64 conf.start_msg('Building shared library')
65 if conf.options.enable_shared:
66 conf.end_msg('yes')
67 else:
68 conf.end_msg('no', color='YELLOW')
69 conf.env.enable_shared = conf.options.enable_shared
70
71 if not conf.options.enable_shared and not conf.options.enable_static:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050072 conf.fatal('Either static library or shared library must be enabled')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080073
Alexander Afanasyev39535f42019-07-05 22:07:52 -040074 conf.load(['cross', 'compiler_cxx', 'gnu_dirs', 'c_osx',
Davide Pesavento844b0932018-05-07 01:00:16 -040075 'default-compiler-flags', 'compiler-features',
Alexander Afanasyevadc71842017-01-26 22:17:58 -050076 'pch', 'osx-frameworks', 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020077 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080078
Davide Pesaventofd674012019-02-06 02:00:12 -050079 conf.env.WITH_TESTS = conf.options.with_tests
80 conf.env.WITH_TOOLS = conf.options.with_tools
81 conf.env.WITH_EXAMPLES = conf.options.with_examples
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080082
Davide Pesaventodbe645f2021-04-16 00:42:52 -040083 conf.find_program('dot', var='DOT', mandatory=False)
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070084
Eric Newberry96033252020-04-10 13:08:27 -070085 conf.check_cxx(lib='atomic', uselib_store='ATOMIC', define_name='HAVE_ATOMIC', mandatory=False)
Davide Pesavento2bf35a62017-04-02 00:41:06 -040086 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070087 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Davide Pesavento78338c52020-04-20 23:00:02 -040088
Davide Pesavento50b92262018-07-11 12:28:31 -040089 conf.check_cxx(msg='Checking for function getpass', define_name='HAVE_GETPASS', mandatory=False,
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050090 fragment='''#include <unistd.h>
91 int main() { getpass("Enter password"); }''')
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070092
Davide Pesavento474c3b22018-08-25 16:24:43 -040093 if conf.check_cxx(msg='Checking for netlink', define_name='HAVE_NETLINK', mandatory=False,
Davide Pesavento2bf35a62017-04-02 00:41:06 -040094 header_name=['linux/if_addr.h', 'linux/if_link.h',
Davide Pesavento474c3b22018-08-25 16:24:43 -040095 'linux/netlink.h', 'linux/rtnetlink.h', 'linux/genetlink.h']):
Davide Pesaventofd674012019-02-06 02:00:12 -050096 conf.env.HAVE_NETLINK = True
Davide Pesavento50b92262018-07-11 12:28:31 -040097 conf.check_cxx(msg='Checking for NETLINK_EXT_ACK', define_name='HAVE_NETLINK_EXT_ACK', mandatory=False,
98 fragment='''#include <linux/netlink.h>
99 int main() { return NETLINK_EXT_ACK; }''')
Davide Pesavento2bf35a62017-04-02 00:41:06 -0400100 conf.check_cxx(msg='Checking for IFA_FLAGS', define_name='HAVE_IFA_FLAGS', mandatory=False,
Davide Pesavento844b0932018-05-07 01:00:16 -0400101 fragment='''#include <linux/if_addr.h>
102 int main() { return IFA_FLAGS; }''')
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -0800103
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500104 conf.check_osx_frameworks()
Davide Pesavento77f1c762019-02-19 03:20:49 -0500105 conf.check_sqlite3()
Davide Pesavento273ea012022-02-20 17:50:02 -0500106 conf.check_openssl(lib='crypto', atleast_version='1.1.1')
Yingdi Yue6bfab22014-02-06 16:01:19 -0800107
Davide Pesavento77f1c762019-02-19 03:20:49 -0500108 boost_libs = ['system', 'program_options', 'chrono', 'date_time', 'filesystem', 'thread', 'log']
Junxiao Shi7d054272016-08-04 17:00:41 +0000109
Davide Pesaventofd674012019-02-06 02:00:12 -0500110 stacktrace_backend = conf.options.with_stacktrace
111 if stacktrace_backend is None:
112 # auto-detect
Davide Pesaventof3089c32021-05-25 21:28:21 -0400113 for candidate in ('backtrace', 'basic'):
Davide Pesaventofd674012019-02-06 02:00:12 -0500114 try:
115 conf.check_boost(lib='stacktrace_%s' % candidate, mt=True)
116 except conf.errors.ConfigurationError:
117 continue
118 stacktrace_backend = candidate
119 break
120 if stacktrace_backend:
121 conf.env.HAVE_STACKTRACE = True
122 conf.env.append_unique('DEFINES_BOOST', ['BOOST_STACKTRACE_DYN_LINK'])
123 boost_libs.append('stacktrace_%s' % stacktrace_backend)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800124
Davide Pesaventofd674012019-02-06 02:00:12 -0500125 if conf.env.WITH_TESTS:
126 boost_libs.append('unit_test_framework')
127
128 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesavento844b0932018-05-07 01:00:16 -0400129 if conf.env.BOOST_VERSION_NUMBER < 105800:
Davide Pesavento78338c52020-04-20 23:00:02 -0400130 conf.fatal('The minimum supported version of Boost is 1.65.1.\n'
131 'Please upgrade your distribution or manually install a newer version of Boost.\n'
132 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
133 elif conf.env.BOOST_VERSION_NUMBER < 106501:
134 Logs.warn('WARNING: Using a version of Boost older than 1.65.1 is not officially supported and may not work.\n'
135 'If you encounter any problems, please upgrade your distribution or manually install a newer version of Boost.\n'
136 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800137
Davide Pesaventofc27d3b2019-03-02 00:47:35 -0500138 # Workaround for bug 4860
139 if conf.env.BOOST_VERSION_NUMBER < 106900 and conf.env.CXX_NAME == 'clang':
140 conf.env.append_unique('DEFINES_BOOST', ['BOOST_ASIO_DISABLE_STD_EXPERIMENTAL_STRING_VIEW'])
141
Davide Pesaventod8e0cad2021-05-26 21:43:47 -0400142 conf.env.append_unique('DEFINES_BOOST', ['BOOST_FILESYSTEM_NO_DEPRECATED'])
143
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -0400144 conf.check_compiler_flags()
145
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500146 # Loading "late" to prevent tests from being compiled with profiling flags
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700147 conf.load('coverage')
Eric Newberrya3973e02016-11-01 17:58:12 -0700148 conf.load('sanitizers')
149
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200150 if not conf.env.enable_static:
151 # If there happens to be a static library, waf will put the corresponding -L flags
152 # before dynamic library flags. This can result in compilation failure when the
153 # system has a different version of the ndn-cxx library installed.
Davide Pesaventofd674012019-02-06 02:00:12 -0500154 conf.env.prepend_value('STLIBPATH', ['.'])
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200155
Davide Pesaventofd674012019-02-06 02:00:12 -0500156 conf.define_cond('HAVE_STACKTRACE', conf.env.HAVE_STACKTRACE)
157 conf.define_cond('HAVE_TESTS', conf.env.WITH_TESTS)
158 conf.define_cond('WITH_OSX_KEYCHAIN', conf.env.HAVE_OSX_FRAMEWORKS and conf.options.with_osx_keychain)
159 conf.define_cond('DISABLE_SQLITE3_FS_LOCKING', not conf.options.with_sqlite_locking)
160 conf.define('SYSCONFDIR', conf.env.SYSCONFDIR)
161 # The config header will contain all defines that were added using conf.define()
162 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
163 # will not appear in the config header, but will instead be passed directly to the
164 # compiler on the command line.
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000165 conf.write_config_header('ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800166
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700167def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700168 version(bld)
169
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500170 bld(features='subst',
171 name='version.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500172 source='ndn-cxx/version.hpp.in',
173 target='ndn-cxx/version.hpp',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700174 install_path=None,
175 VERSION_STRING=VERSION_BASE,
176 VERSION_BUILD=VERSION,
177 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
178 int(VERSION_SPLIT[1]) * 1000 +
179 int(VERSION_SPLIT[2]),
180 VERSION_MAJOR=VERSION_SPLIT[0],
181 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200182 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700183
Davide Pesaventofd674012019-02-06 02:00:12 -0500184 if bld.env.HAVE_OSX_FRAMEWORKS:
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500185 # Need to disable precompiled headers for Objective-C++ code
Davide Pesavento25d4f1c2020-04-29 23:31:04 -0400186 bld(features='cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500187 target='ndn-cxx-mm-objects',
188 source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'),
189 use='BOOST PTHREAD OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN',
Davide Pesavento7e780642018-11-24 15:51:34 -0500190 includes='.')
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500191
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800192 libndn_cxx = dict(
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500193 target='ndn-cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500194 source=bld.path.ant_glob('ndn-cxx/**/*.cpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400195 excl=['ndn-cxx/**/*-android.cpp',
196 'ndn-cxx/**/*-osx.cpp',
197 'ndn-cxx/**/*-sqlite3.cpp',
198 'ndn-cxx/**/*netlink*.cpp']),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500199 features='pch',
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000200 headers='ndn-cxx/impl/common-pch.hpp',
Eric Newberry96033252020-04-10 13:08:27 -0700201 use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 ATOMIC RT PTHREAD',
Davide Pesavento7e780642018-11-24 15:51:34 -0500202 includes='.',
203 export_includes='.',
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200204 install_path='${LIBDIR}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800205
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400206 if bld.env.HOST == 'android':
207 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-android.cpp')
208
Davide Pesaventofd674012019-02-06 02:00:12 -0500209 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento19442812018-11-23 14:00:04 -0500210 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp')
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400211 libndn_cxx['use'] += ' OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN'
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500212
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800213 # In case we want to make it optional later
Davide Pesavento19442812018-11-23 14:00:04 -0500214 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800215
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400216 if bld.env.HAVE_NETLINK:
217 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp')
218
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800219 if bld.env.enable_shared:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500220 bld.shlib(name='ndn-cxx',
221 vnum=VERSION_BASE,
222 cnum=VERSION_BASE,
223 **libndn_cxx)
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800224
225 if bld.env.enable_static:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500226 bld.stlib(name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx',
227 **libndn_cxx)
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800228
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700229 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800230 pkgconfig_libs = []
231 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800232 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800233 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800234 pkgconfig_cxxflags = []
Alexander Afanasyev8fdae892019-02-10 16:40:48 -0500235 pkgconfig_defines = []
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800236 for lib in Utils.to_list(libndn_cxx['use']):
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800237 if bld.env['LIB_%s' % lib]:
238 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
239 if bld.env['LIBPATH_%s' % lib]:
240 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
241 if bld.env['INCLUDES_%s' % lib]:
242 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800243 if bld.env['LINKFLAGS_%s' % lib]:
244 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
245 if bld.env['CXXFLAGS_%s' % lib]:
246 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev8fdae892019-02-10 16:40:48 -0500247 if bld.env['DEFINES_%s' % lib]:
248 pkgconfig_defines += Utils.to_list(bld.env['DEFINES_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800249
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500250 EXTRA_FRAMEWORKS = ''
Davide Pesaventofd674012019-02-06 02:00:12 -0500251 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400252 EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN'
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800253
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800254 def uniq(alist):
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200255 seen = set()
256 return [x for x in alist if x not in seen and not seen.add(x)]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800257
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500258 pkconfig = bld(features='subst',
259 source='libndn-cxx.pc.in',
260 target='libndn-cxx.pc',
261 install_path='${LIBDIR}/pkgconfig',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700262 VERSION=VERSION_BASE,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800263
264 # This probably not the right thing to do, but to simplify life of apps
265 # that use the library
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500266 EXTRA_LIBS=' '.join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
267 EXTRA_LDFLAGS=' '.join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
268 EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)),
269 EXTRA_INCLUDES=' '.join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
Davide Pesavento4fb35d82019-10-31 19:33:10 -0400270 EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags) + [('-D%s' % i) for i in uniq(pkgconfig_defines)]),
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200271 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800272
Davide Pesaventofd674012019-02-06 02:00:12 -0500273 if bld.env.WITH_TESTS:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800274 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800275
Davide Pesaventofd674012019-02-06 02:00:12 -0500276 if bld.env.WITH_TOOLS:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500277 bld.recurse('tools')
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700278
Davide Pesaventofd674012019-02-06 02:00:12 -0500279 if bld.env.WITH_EXAMPLES:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500280 bld.recurse('examples')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800281
Davide Pesavento19442812018-11-23 14:00:04 -0500282 headers = bld.path.ant_glob('ndn-cxx/**/*.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400283 excl=['ndn-cxx/**/*-android.hpp',
284 'ndn-cxx/**/*-osx.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500285 'ndn-cxx/**/*-sqlite3.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400286 'ndn-cxx/**/*netlink*.hpp',
Junxiao Shi24c5a002018-12-12 04:47:15 +0000287 'ndn-cxx/**/impl/**/*'])
Davide Pesavento50b92262018-07-11 12:28:31 -0400288
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400289 if bld.env.HOST == 'android':
290 headers += bld.path.ant_glob('ndn-cxx/**/*-android.hpp', excl='ndn-cxx/**/impl/**/*')
291
Davide Pesaventofd674012019-02-06 02:00:12 -0500292 if bld.env.HAVE_OSX_FRAMEWORKS:
Junxiao Shi24c5a002018-12-12 04:47:15 +0000293 headers += bld.path.ant_glob('ndn-cxx/**/*-osx.hpp', excl='ndn-cxx/**/impl/**/*')
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500294
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500295 # In case we want to make it optional later
Junxiao Shi24c5a002018-12-12 04:47:15 +0000296 headers += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.hpp', excl='ndn-cxx/**/impl/**/*')
Junxiao Shie30aaea2014-12-03 20:48:34 -0700297
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400298 if bld.env.HAVE_NETLINK:
299 headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*')
300
Davide Pesaventof3089c32021-05-25 21:28:21 -0400301 bld.install_files('${INCLUDEDIR}', headers, relative_trick=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800302
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000303 # Install generated headers
Davide Pesaventof3089c32021-05-25 21:28:21 -0400304 for filename in ('ndn-cxx/detail/config.hpp', 'ndn-cxx/version.hpp'):
305 bld.install_files('${INCLUDEDIR}/%s' % os.path.dirname(filename),
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000306 bld.path.find_resource(filename))
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700307
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500308 bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample')
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600309
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500310 if bld.env.SPHINX_BUILD:
311 bld(features='sphinx',
312 name='manpages',
313 builder='man',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500314 config='docs/conf.py',
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400315 outdir='docs/manpages',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400316 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500317 install_path='${MANDIR}',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400318 version=VERSION_BASE,
319 release=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700320
321def docs(bld):
322 from waflib import Options
323 Options.commands = ['doxygen', 'sphinx'] + Options.commands
324
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000325def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700326 version(bld)
327
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800328 if not bld.env.DOXYGEN:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500329 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700330
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500331 bld(features='subst',
332 name='doxygen.conf',
333 source=['docs/doxygen.conf.in',
334 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
335 target=['docs/doxygen.conf',
336 'docs/named_data_theme/named_data_footer-with-analytics.html'],
337 VERSION=VERSION,
Davide Pesaventodbe645f2021-04-16 00:42:52 -0400338 HAVE_DOT='YES' if bld.env.DOT else 'NO',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500339 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
340 if os.getenv('GOOGLE_ANALYTICS', None) \
341 else '../docs/named_data_theme/named_data_footer.html',
342 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
343
344 bld(features='doxygen',
345 doxyfile='docs/doxygen.conf',
346 use='doxygen.conf')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800347
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700348def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700349 version(bld)
350
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700351 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500352 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
353
354 bld(features='sphinx',
355 config='docs/conf.py',
356 outdir='docs',
357 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventob310efb2019-04-11 22:10:24 -0400358 version=VERSION_BASE,
359 release=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700360
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700361def version(ctx):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500362 # don't execute more than once
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700363 if getattr(Context.g_module, 'VERSION_BASE', None):
364 return
365
366 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500367 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700368
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500369 # first, try to get a version string from git
370 gotVersionFromGit = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700371 try:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700372 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500373 out = subprocess.check_output(cmd, universal_newlines=True).strip()
374 if out:
375 gotVersionFromGit = True
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700376 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500377 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700378 else:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500379 # no tags matched
380 Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out)
Davide Pesavento21be8162018-05-10 20:36:37 -0400381 except (OSError, subprocess.CalledProcessError):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700382 pass
383
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400384 versionFile = ctx.path.find_node('VERSION.info')
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500385 if not gotVersionFromGit and versionFile is not None:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700386 try:
387 Context.g_module.VERSION = versionFile.read()
388 return
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500389 except EnvironmentError:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700390 pass
391
392 # version was obtained from git, update VERSION file if necessary
393 if versionFile is not None:
394 try:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500395 if versionFile.read() == Context.g_module.VERSION:
396 # already up-to-date
397 return
398 except EnvironmentError as e:
399 Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror))
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700400 else:
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400401 versionFile = ctx.path.make_node('VERSION.info')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700402
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700403 try:
404 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500405 except EnvironmentError as e:
406 Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror))
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700407
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700408def dist(ctx):
409 version(ctx)
410
411def distcheck(ctx):
412 version(ctx)