blob: a55e4831d75a5e2d71c60f015955105ea6b5f8ee [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
Davide Pesavento550d8c92023-11-05 01:30:01 -04003import os
4import subprocess
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05005from waflib import Context, Logs, Utils
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -07006
Davide Pesavento81de5d92022-12-30 01:08:05 -05007VERSION = '0.8.1'
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05008APPNAME = 'ndn-cxx'
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05009GIT_TAG_PREFIX = 'ndn-cxx-'
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070010
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080011def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070012 opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
Davide Pesavento869d1a32023-03-14 23:55:02 -040013 opt.load(['cross', 'default-compiler-flags', 'pch',
14 'coverage', 'sanitizers', 'osx-frameworks',
Alexander Afanasyevadc71842017-01-26 22:17:58 -050015 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020016 'doxygen', 'sphinx_build'],
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070017 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080018
Davide Pesavento77f1c762019-02-19 03:20:49 -050019 opt = opt.add_option_group('ndn-cxx Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080020
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070021 opt.add_option('--enable-static', action='store_true', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040022 dest='enable_static', help='Build static library (disabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070023 opt.add_option('--disable-static', action='store_false', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040024 dest='enable_static', help='Do not build static library (disabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080025
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070026 opt.add_option('--enable-shared', action='store_true', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040027 dest='enable_shared', help='Build shared library (enabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070028 opt.add_option('--disable-shared', action='store_false', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040029 dest='enable_shared', help='Do not build shared library (enabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080030
Davide Pesavento77f1c762019-02-19 03:20:49 -050031 opt.add_option('--without-osx-keychain', action='store_false', default=True,
32 dest='with_osx_keychain', help='Do not use macOS Keychain as default TPM (macOS only)')
33
34 opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking',
35 help='Disable filesystem locking in sqlite3 database '
36 '(use unix-dot locking mechanism instead). '
37 'This option may be necessary if the home directory is hosted on NFS.')
38
39 stacktrace_choices = ['backtrace', 'addr2line', 'basic', 'noop']
40 opt.add_option('--with-stacktrace', action='store', default=None, choices=stacktrace_choices,
41 help='Select the stacktrace backend implementation: '
42 '%s [default=auto-detect]' % ', '.join(stacktrace_choices))
43 opt.add_option('--without-stacktrace', action='store_const', const='', dest='with_stacktrace',
44 help='Disable stacktrace support')
45
46 opt.add_option('--with-examples', action='store_true', default=False,
47 help='Build examples')
48
49 opt.add_option('--with-tests', action='store_true', default=False,
50 help='Build tests')
51
52 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
53 help='Do not build tools')
54
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080055def configure(conf):
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080056 conf.start_msg('Building static library')
57 if conf.options.enable_static:
58 conf.end_msg('yes')
59 else:
60 conf.end_msg('no', color='YELLOW')
61 conf.env.enable_static = conf.options.enable_static
62
63 conf.start_msg('Building shared library')
64 if conf.options.enable_shared:
65 conf.end_msg('yes')
66 else:
67 conf.end_msg('no', color='YELLOW')
68 conf.env.enable_shared = conf.options.enable_shared
69
70 if not conf.options.enable_shared and not conf.options.enable_static:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050071 conf.fatal('Either static library or shared library must be enabled')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080072
Davide Pesavento869d1a32023-03-14 23:55:02 -040073 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
74 'cross', 'default-compiler-flags', 'pch',
75 'osx-frameworks', 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020076 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080077
Davide Pesavento550d8c92023-11-05 01:30:01 -040078 conf.env.WITH_EXAMPLES = conf.options.with_examples
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
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080081
Davide Pesavento2d7c5852022-07-18 16:02:52 -040082 conf.find_program('dot', mandatory=False)
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070083
Eric Newberry96033252020-04-10 13:08:27 -070084 conf.check_cxx(lib='atomic', uselib_store='ATOMIC', define_name='HAVE_ATOMIC', mandatory=False)
Davide Pesavento2bf35a62017-04-02 00:41:06 -040085 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070086 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Davide Pesavento78338c52020-04-20 23:00:02 -040087
Davide Pesavento50b92262018-07-11 12:28:31 -040088 conf.check_cxx(msg='Checking for function getpass', define_name='HAVE_GETPASS', mandatory=False,
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050089 fragment='''#include <unistd.h>
90 int main() { getpass("Enter password"); }''')
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070091
Davide Pesavento474c3b22018-08-25 16:24:43 -040092 if conf.check_cxx(msg='Checking for netlink', define_name='HAVE_NETLINK', mandatory=False,
Davide Pesavento2bf35a62017-04-02 00:41:06 -040093 header_name=['linux/if_addr.h', 'linux/if_link.h',
Davide Pesavento474c3b22018-08-25 16:24:43 -040094 'linux/netlink.h', 'linux/rtnetlink.h', 'linux/genetlink.h']):
Davide Pesaventofd674012019-02-06 02:00:12 -050095 conf.env.HAVE_NETLINK = True
Davide Pesavento50b92262018-07-11 12:28:31 -040096 conf.check_cxx(msg='Checking for NETLINK_EXT_ACK', define_name='HAVE_NETLINK_EXT_ACK', mandatory=False,
97 fragment='''#include <linux/netlink.h>
98 int main() { return NETLINK_EXT_ACK; }''')
Davide Pesavento2bf35a62017-04-02 00:41:06 -040099 conf.check_cxx(msg='Checking for IFA_FLAGS', define_name='HAVE_IFA_FLAGS', mandatory=False,
Davide Pesavento844b0932018-05-07 01:00:16 -0400100 fragment='''#include <linux/if_addr.h>
101 int main() { return IFA_FLAGS; }''')
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -0800102
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500103 conf.check_osx_frameworks()
Davide Pesavento77f1c762019-02-19 03:20:49 -0500104 conf.check_sqlite3()
Davide Pesavento273ea012022-02-20 17:50:02 -0500105 conf.check_openssl(lib='crypto', atleast_version='1.1.1')
Yingdi Yue6bfab22014-02-06 16:01:19 -0800106
Davide Pesavento550d8c92023-11-05 01:30:01 -0400107 conf.check_boost()
108 if conf.env.BOOST_VERSION_NUMBER < 107100:
109 conf.fatal('The minimum supported version of Boost is 1.71.0.\n'
110 'Please upgrade your distribution or manually install a newer version of Boost.\n'
111 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
112
113 # Boost.Log requires Boost.Thread
114 boost_libs = ['chrono', 'filesystem', 'log', 'thread']
115
116 # Boost.Date_Time is header-only since 1.73
117 if conf.env.BOOST_VERSION_NUMBER < 107300:
118 boost_libs.append('date_time')
Junxiao Shi7d054272016-08-04 17:00:41 +0000119
Davide Pesaventofd674012019-02-06 02:00:12 -0500120 stacktrace_backend = conf.options.with_stacktrace
121 if stacktrace_backend is None:
122 # auto-detect
Davide Pesaventof3089c32021-05-25 21:28:21 -0400123 for candidate in ('backtrace', 'basic'):
Davide Pesaventofd674012019-02-06 02:00:12 -0500124 try:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400125 conf.check_boost(lib=f'stacktrace_{candidate}', mt=True)
Davide Pesaventofd674012019-02-06 02:00:12 -0500126 except conf.errors.ConfigurationError:
127 continue
128 stacktrace_backend = candidate
129 break
130 if stacktrace_backend:
131 conf.env.HAVE_STACKTRACE = True
132 conf.env.append_unique('DEFINES_BOOST', ['BOOST_STACKTRACE_DYN_LINK'])
Davide Pesaventoc9967422023-09-07 22:04:34 -0400133 boost_libs.append(f'stacktrace_{stacktrace_backend}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800134
Davide Pesaventofd674012019-02-06 02:00:12 -0500135 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventod8e0cad2021-05-26 21:43:47 -0400136
Davide Pesavento5686c512023-09-07 22:08:46 -0400137 if conf.env.WITH_TESTS:
138 conf.check_boost(lib='unit_test_framework', mt=True, uselib_store='BOOST_TESTS')
139
140 if conf.env.WITH_TOOLS:
141 conf.check_boost(lib='program_options', mt=True, uselib_store='BOOST_TOOLS')
142
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -0400143 conf.check_compiler_flags()
144
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500145 # Loading "late" to prevent tests from being compiled with profiling flags
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700146 conf.load('coverage')
Eric Newberrya3973e02016-11-01 17:58:12 -0700147 conf.load('sanitizers')
148
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200149 if not conf.env.enable_static:
150 # If there happens to be a static library, waf will put the corresponding -L flags
151 # before dynamic library flags. This can result in compilation failure when the
152 # system has a different version of the ndn-cxx library installed.
Davide Pesaventofd674012019-02-06 02:00:12 -0500153 conf.env.prepend_value('STLIBPATH', ['.'])
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200154
Davide Pesaventofd674012019-02-06 02:00:12 -0500155 conf.define_cond('HAVE_STACKTRACE', conf.env.HAVE_STACKTRACE)
156 conf.define_cond('HAVE_TESTS', conf.env.WITH_TESTS)
157 conf.define_cond('WITH_OSX_KEYCHAIN', conf.env.HAVE_OSX_FRAMEWORKS and conf.options.with_osx_keychain)
158 conf.define_cond('DISABLE_SQLITE3_FS_LOCKING', not conf.options.with_sqlite_locking)
159 conf.define('SYSCONFDIR', conf.env.SYSCONFDIR)
160 # The config header will contain all defines that were added using conf.define()
161 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
162 # will not appear in the config header, but will instead be passed directly to the
163 # compiler on the command line.
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000164 conf.write_config_header('ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800165
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700166def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700167 version(bld)
168
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500169 bld(features='subst',
170 name='version.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500171 source='ndn-cxx/version.hpp.in',
172 target='ndn-cxx/version.hpp',
Davide Pesavento550d8c92023-11-05 01:30:01 -0400173 install_path='${INCLUDEDIR}/ndn-cxx',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700174 VERSION_STRING=VERSION_BASE,
175 VERSION_BUILD=VERSION,
176 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
177 int(VERSION_SPLIT[1]) * 1000 +
178 int(VERSION_SPLIT[2]),
179 VERSION_MAJOR=VERSION_SPLIT[0],
180 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200181 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700182
Davide Pesaventofd674012019-02-06 02:00:12 -0500183 if bld.env.HAVE_OSX_FRAMEWORKS:
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500184 # Need to disable precompiled headers for Objective-C++ code
Davide Pesavento25d4f1c2020-04-29 23:31:04 -0400185 bld(features='cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500186 target='ndn-cxx-mm-objects',
187 source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'),
188 use='BOOST PTHREAD OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN',
Davide Pesavento7e780642018-11-24 15:51:34 -0500189 includes='.')
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500190
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800191 libndn_cxx = dict(
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500192 target='ndn-cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500193 source=bld.path.ant_glob('ndn-cxx/**/*.cpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400194 excl=['ndn-cxx/**/*-android.cpp',
195 'ndn-cxx/**/*-osx.cpp',
196 'ndn-cxx/**/*-sqlite3.cpp',
197 'ndn-cxx/**/*netlink*.cpp']),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500198 features='pch',
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000199 headers='ndn-cxx/impl/common-pch.hpp',
Eric Newberry96033252020-04-10 13:08:27 -0700200 use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 ATOMIC RT PTHREAD',
Davide Pesavento7e780642018-11-24 15:51:34 -0500201 includes='.',
202 export_includes='.',
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200203 install_path='${LIBDIR}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800204
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400205 if bld.env.HOST == 'android':
206 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-android.cpp')
207
Davide Pesaventofd674012019-02-06 02:00:12 -0500208 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento19442812018-11-23 14:00:04 -0500209 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp')
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400210 libndn_cxx['use'] += ' OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN'
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500211
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800212 # In case we want to make it optional later
Davide Pesavento19442812018-11-23 14:00:04 -0500213 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800214
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400215 if bld.env.HAVE_NETLINK:
216 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp')
217
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800218 if bld.env.enable_shared:
Davide Pesavento550d8c92023-11-05 01:30:01 -0400219 bld.shlib(
220 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:
Davide Pesavento550d8c92023-11-05 01:30:01 -0400226 bld.stlib(
227 name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx',
228 **libndn_cxx)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800229
Davide Pesaventofd674012019-02-06 02:00:12 -0500230 if bld.env.WITH_TESTS:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800231 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800232
Davide Pesaventofd674012019-02-06 02:00:12 -0500233 if bld.env.WITH_TOOLS:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500234 bld.recurse('tools')
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700235
Davide Pesaventofd674012019-02-06 02:00:12 -0500236 if bld.env.WITH_EXAMPLES:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500237 bld.recurse('examples')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800238
Davide Pesavento550d8c92023-11-05 01:30:01 -0400239 # Install header files
Davide Pesavento19442812018-11-23 14:00:04 -0500240 headers = bld.path.ant_glob('ndn-cxx/**/*.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400241 excl=['ndn-cxx/**/*-android.hpp',
242 'ndn-cxx/**/*-osx.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500243 'ndn-cxx/**/*-sqlite3.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400244 'ndn-cxx/**/*netlink*.hpp',
Junxiao Shi24c5a002018-12-12 04:47:15 +0000245 'ndn-cxx/**/impl/**/*'])
Davide Pesavento50b92262018-07-11 12:28:31 -0400246
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400247 if bld.env.HOST == 'android':
248 headers += bld.path.ant_glob('ndn-cxx/**/*-android.hpp', excl='ndn-cxx/**/impl/**/*')
249
Davide Pesaventofd674012019-02-06 02:00:12 -0500250 if bld.env.HAVE_OSX_FRAMEWORKS:
Junxiao Shi24c5a002018-12-12 04:47:15 +0000251 headers += bld.path.ant_glob('ndn-cxx/**/*-osx.hpp', excl='ndn-cxx/**/impl/**/*')
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500252
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500253 # In case we want to make it optional later
Junxiao Shi24c5a002018-12-12 04:47:15 +0000254 headers += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.hpp', excl='ndn-cxx/**/impl/**/*')
Junxiao Shie30aaea2014-12-03 20:48:34 -0700255
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400256 if bld.env.HAVE_NETLINK:
257 headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*')
258
Davide Pesaventof3089c32021-05-25 21:28:21 -0400259 bld.install_files('${INCLUDEDIR}', headers, relative_trick=True)
Davide Pesavento550d8c92023-11-05 01:30:01 -0400260 bld.install_files('${INCLUDEDIR}/ndn-cxx/detail', 'ndn-cxx/detail/config.hpp')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800261
Davide Pesavento550d8c92023-11-05 01:30:01 -0400262 # Prepare flags that should go into pkgconfig file
263 pkgconfig_libs = []
264 pkgconfig_ldflags = []
265 pkgconfig_linkflags = []
266 pkgconfig_includes = []
267 pkgconfig_cxxflags = []
268 pkgconfig_defines = []
269 for lib in Utils.to_list(libndn_cxx['use']):
270 if bld.env[f'LIB_{lib}']:
271 pkgconfig_libs += Utils.to_list(bld.env[f'LIB_{lib}'])
272 if bld.env[f'LIBPATH_{lib}']:
273 pkgconfig_ldflags += Utils.to_list(bld.env[f'LIBPATH_{lib}'])
274 if bld.env[f'LINKFLAGS_{lib}']:
275 pkgconfig_linkflags += Utils.to_list(bld.env[f'LINKFLAGS_{lib}'])
276 if bld.env[f'INCLUDES_{lib}']:
277 pkgconfig_includes += Utils.to_list(bld.env[f'INCLUDES_{lib}'])
278 if bld.env[f'CXXFLAGS_{lib}']:
279 pkgconfig_cxxflags += Utils.to_list(bld.env[f'CXXFLAGS_{lib}'])
280 if bld.env[f'DEFINES_{lib}']:
281 pkgconfig_defines += Utils.to_list(bld.env[f'DEFINES_{lib}'])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700282
Davide Pesavento550d8c92023-11-05 01:30:01 -0400283 EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN'
284
285 def uniq(alist):
286 return list(dict.fromkeys(alist))
287
288 bld(features='subst',
289 source='libndn-cxx.pc.in',
290 target='libndn-cxx.pc',
291 install_path='${LIBDIR}/pkgconfig',
292 VERSION=VERSION_BASE,
293 # This probably not the right thing to do, but to simplify life of apps
294 # that use the library
295 EXTRA_LIBS=' '.join([f'-l{i}' for i in uniq(pkgconfig_libs)]),
296 EXTRA_LDFLAGS=' '.join([f'-L{i}' for i in uniq(pkgconfig_ldflags)]),
297 EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)),
298 EXTRA_INCLUDES=' '.join([f'-I{i}' for i in uniq(pkgconfig_includes)]),
299 EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags) + [f'-D{i}' for i in uniq(pkgconfig_defines)]),
300 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS if bld.env.HAVE_OSX_FRAMEWORKS else '')
301
302 # Install sample config
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500303 bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample')
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600304
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500305 if bld.env.SPHINX_BUILD:
306 bld(features='sphinx',
307 name='manpages',
308 builder='man',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500309 config='docs/conf.py',
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400310 outdir='docs/manpages',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400311 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500312 install_path='${MANDIR}',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400313 version=VERSION_BASE,
314 release=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700315
316def docs(bld):
317 from waflib import Options
318 Options.commands = ['doxygen', 'sphinx'] + Options.commands
319
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000320def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700321 version(bld)
322
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800323 if not bld.env.DOXYGEN:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500324 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700325
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500326 bld(features='subst',
327 name='doxygen.conf',
328 source=['docs/doxygen.conf.in',
329 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
330 target=['docs/doxygen.conf',
331 'docs/named_data_theme/named_data_footer-with-analytics.html'],
332 VERSION=VERSION,
Davide Pesaventodbe645f2021-04-16 00:42:52 -0400333 HAVE_DOT='YES' if bld.env.DOT else 'NO',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500334 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
335 if os.getenv('GOOGLE_ANALYTICS', None) \
336 else '../docs/named_data_theme/named_data_footer.html',
337 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
338
339 bld(features='doxygen',
340 doxyfile='docs/doxygen.conf',
341 use='doxygen.conf')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800342
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700343def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700344 version(bld)
345
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700346 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500347 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
348
349 bld(features='sphinx',
350 config='docs/conf.py',
351 outdir='docs',
352 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventob310efb2019-04-11 22:10:24 -0400353 version=VERSION_BASE,
354 release=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700355
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700356def version(ctx):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500357 # don't execute more than once
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700358 if getattr(Context.g_module, 'VERSION_BASE', None):
359 return
360
361 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500362 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700363
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500364 # first, try to get a version string from git
365 gotVersionFromGit = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700366 try:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400367 cmd = ['git', 'describe', '--always', '--match', f'{GIT_TAG_PREFIX}*']
368 out = subprocess.run(cmd, capture_output=True, check=True, text=True).stdout.strip()
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500369 if out:
370 gotVersionFromGit = True
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700371 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500372 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700373 else:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500374 # no tags matched
Davide Pesaventoc9967422023-09-07 22:04:34 -0400375 Context.g_module.VERSION = f'{VERSION_BASE}-commit-{out}'
376 except (OSError, subprocess.SubprocessError):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700377 pass
378
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400379 versionFile = ctx.path.find_node('VERSION.info')
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500380 if not gotVersionFromGit and versionFile is not None:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700381 try:
382 Context.g_module.VERSION = versionFile.read()
383 return
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500384 except EnvironmentError:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700385 pass
386
387 # version was obtained from git, update VERSION file if necessary
388 if versionFile is not None:
389 try:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500390 if versionFile.read() == Context.g_module.VERSION:
391 # already up-to-date
392 return
393 except EnvironmentError as e:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400394 Logs.warn(f'{versionFile} exists but is not readable ({e.strerror})')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700395 else:
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400396 versionFile = ctx.path.make_node('VERSION.info')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700397
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700398 try:
399 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500400 except EnvironmentError as e:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400401 Logs.warn(f'{versionFile} is not writable ({e.strerror})')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700402
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700403def dist(ctx):
Davide Pesaventoae39daf2023-02-14 23:46:46 -0500404 ctx.algo = 'tar.xz'
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700405 version(ctx)
406
407def distcheck(ctx):
Davide Pesaventoae39daf2023-02-14 23:46:46 -0500408 ctx.algo = 'tar.xz'
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700409 version(ctx)