blob: 5eb2681e40459974fcad2994f8207782a1a07f68 [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
Davide Pesavento550d8c92023-11-05 01:30:01 -0400143 conf.env.append_unique('DEFINES_BOOST', ['BOOST_FILESYSTEM_NO_DEPRECATED'])
144
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -0400145 conf.check_compiler_flags()
146
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500147 # Loading "late" to prevent tests from being compiled with profiling flags
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700148 conf.load('coverage')
Eric Newberrya3973e02016-11-01 17:58:12 -0700149 conf.load('sanitizers')
150
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200151 if not conf.env.enable_static:
152 # If there happens to be a static library, waf will put the corresponding -L flags
153 # before dynamic library flags. This can result in compilation failure when the
154 # system has a different version of the ndn-cxx library installed.
Davide Pesaventofd674012019-02-06 02:00:12 -0500155 conf.env.prepend_value('STLIBPATH', ['.'])
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200156
Davide Pesaventofd674012019-02-06 02:00:12 -0500157 conf.define_cond('HAVE_STACKTRACE', conf.env.HAVE_STACKTRACE)
158 conf.define_cond('HAVE_TESTS', conf.env.WITH_TESTS)
159 conf.define_cond('WITH_OSX_KEYCHAIN', conf.env.HAVE_OSX_FRAMEWORKS and conf.options.with_osx_keychain)
160 conf.define_cond('DISABLE_SQLITE3_FS_LOCKING', not conf.options.with_sqlite_locking)
161 conf.define('SYSCONFDIR', conf.env.SYSCONFDIR)
162 # The config header will contain all defines that were added using conf.define()
163 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
164 # will not appear in the config header, but will instead be passed directly to the
165 # compiler on the command line.
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000166 conf.write_config_header('ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800167
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700168def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700169 version(bld)
170
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500171 bld(features='subst',
172 name='version.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500173 source='ndn-cxx/version.hpp.in',
174 target='ndn-cxx/version.hpp',
Davide Pesavento550d8c92023-11-05 01:30:01 -0400175 install_path='${INCLUDEDIR}/ndn-cxx',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700176 VERSION_STRING=VERSION_BASE,
177 VERSION_BUILD=VERSION,
178 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
179 int(VERSION_SPLIT[1]) * 1000 +
180 int(VERSION_SPLIT[2]),
181 VERSION_MAJOR=VERSION_SPLIT[0],
182 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200183 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700184
Davide Pesaventofd674012019-02-06 02:00:12 -0500185 if bld.env.HAVE_OSX_FRAMEWORKS:
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500186 # Need to disable precompiled headers for Objective-C++ code
Davide Pesavento25d4f1c2020-04-29 23:31:04 -0400187 bld(features='cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500188 target='ndn-cxx-mm-objects',
189 source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'),
190 use='BOOST PTHREAD OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN',
Davide Pesavento7e780642018-11-24 15:51:34 -0500191 includes='.')
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500192
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800193 libndn_cxx = dict(
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500194 target='ndn-cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500195 source=bld.path.ant_glob('ndn-cxx/**/*.cpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400196 excl=['ndn-cxx/**/*-android.cpp',
197 'ndn-cxx/**/*-osx.cpp',
198 'ndn-cxx/**/*-sqlite3.cpp',
199 'ndn-cxx/**/*netlink*.cpp']),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500200 features='pch',
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000201 headers='ndn-cxx/impl/common-pch.hpp',
Eric Newberry96033252020-04-10 13:08:27 -0700202 use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 ATOMIC RT PTHREAD',
Davide Pesavento7e780642018-11-24 15:51:34 -0500203 includes='.',
204 export_includes='.',
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200205 install_path='${LIBDIR}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800206
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400207 if bld.env.HOST == 'android':
208 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-android.cpp')
209
Davide Pesaventofd674012019-02-06 02:00:12 -0500210 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento19442812018-11-23 14:00:04 -0500211 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp')
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400212 libndn_cxx['use'] += ' OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN'
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500213
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800214 # In case we want to make it optional later
Davide Pesavento19442812018-11-23 14:00:04 -0500215 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800216
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400217 if bld.env.HAVE_NETLINK:
218 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp')
219
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800220 if bld.env.enable_shared:
Davide Pesavento550d8c92023-11-05 01:30:01 -0400221 bld.shlib(
222 name='ndn-cxx',
223 vnum=VERSION_BASE,
224 cnum=VERSION_BASE,
225 **libndn_cxx)
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800226
227 if bld.env.enable_static:
Davide Pesavento550d8c92023-11-05 01:30:01 -0400228 bld.stlib(
229 name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx',
230 **libndn_cxx)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800231
Davide Pesaventofd674012019-02-06 02:00:12 -0500232 if bld.env.WITH_TESTS:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800233 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800234
Davide Pesaventofd674012019-02-06 02:00:12 -0500235 if bld.env.WITH_TOOLS:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500236 bld.recurse('tools')
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700237
Davide Pesaventofd674012019-02-06 02:00:12 -0500238 if bld.env.WITH_EXAMPLES:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500239 bld.recurse('examples')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800240
Davide Pesavento550d8c92023-11-05 01:30:01 -0400241 # Install header files
Davide Pesavento19442812018-11-23 14:00:04 -0500242 headers = bld.path.ant_glob('ndn-cxx/**/*.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400243 excl=['ndn-cxx/**/*-android.hpp',
244 'ndn-cxx/**/*-osx.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500245 'ndn-cxx/**/*-sqlite3.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400246 'ndn-cxx/**/*netlink*.hpp',
Junxiao Shi24c5a002018-12-12 04:47:15 +0000247 'ndn-cxx/**/impl/**/*'])
Davide Pesavento50b92262018-07-11 12:28:31 -0400248
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400249 if bld.env.HOST == 'android':
250 headers += bld.path.ant_glob('ndn-cxx/**/*-android.hpp', excl='ndn-cxx/**/impl/**/*')
251
Davide Pesaventofd674012019-02-06 02:00:12 -0500252 if bld.env.HAVE_OSX_FRAMEWORKS:
Junxiao Shi24c5a002018-12-12 04:47:15 +0000253 headers += bld.path.ant_glob('ndn-cxx/**/*-osx.hpp', excl='ndn-cxx/**/impl/**/*')
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500254
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500255 # In case we want to make it optional later
Junxiao Shi24c5a002018-12-12 04:47:15 +0000256 headers += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.hpp', excl='ndn-cxx/**/impl/**/*')
Junxiao Shie30aaea2014-12-03 20:48:34 -0700257
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400258 if bld.env.HAVE_NETLINK:
259 headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*')
260
Davide Pesaventof3089c32021-05-25 21:28:21 -0400261 bld.install_files('${INCLUDEDIR}', headers, relative_trick=True)
Davide Pesavento550d8c92023-11-05 01:30:01 -0400262 bld.install_files('${INCLUDEDIR}/ndn-cxx/detail', 'ndn-cxx/detail/config.hpp')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800263
Davide Pesavento550d8c92023-11-05 01:30:01 -0400264 # Prepare flags that should go into pkgconfig file
265 pkgconfig_libs = []
266 pkgconfig_ldflags = []
267 pkgconfig_linkflags = []
268 pkgconfig_includes = []
269 pkgconfig_cxxflags = []
270 pkgconfig_defines = []
271 for lib in Utils.to_list(libndn_cxx['use']):
272 if bld.env[f'LIB_{lib}']:
273 pkgconfig_libs += Utils.to_list(bld.env[f'LIB_{lib}'])
274 if bld.env[f'LIBPATH_{lib}']:
275 pkgconfig_ldflags += Utils.to_list(bld.env[f'LIBPATH_{lib}'])
276 if bld.env[f'LINKFLAGS_{lib}']:
277 pkgconfig_linkflags += Utils.to_list(bld.env[f'LINKFLAGS_{lib}'])
278 if bld.env[f'INCLUDES_{lib}']:
279 pkgconfig_includes += Utils.to_list(bld.env[f'INCLUDES_{lib}'])
280 if bld.env[f'CXXFLAGS_{lib}']:
281 pkgconfig_cxxflags += Utils.to_list(bld.env[f'CXXFLAGS_{lib}'])
282 if bld.env[f'DEFINES_{lib}']:
283 pkgconfig_defines += Utils.to_list(bld.env[f'DEFINES_{lib}'])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700284
Davide Pesavento550d8c92023-11-05 01:30:01 -0400285 EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN'
286
287 def uniq(alist):
288 return list(dict.fromkeys(alist))
289
290 bld(features='subst',
291 source='libndn-cxx.pc.in',
292 target='libndn-cxx.pc',
293 install_path='${LIBDIR}/pkgconfig',
294 VERSION=VERSION_BASE,
295 # This probably not the right thing to do, but to simplify life of apps
296 # that use the library
297 EXTRA_LIBS=' '.join([f'-l{i}' for i in uniq(pkgconfig_libs)]),
298 EXTRA_LDFLAGS=' '.join([f'-L{i}' for i in uniq(pkgconfig_ldflags)]),
299 EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)),
300 EXTRA_INCLUDES=' '.join([f'-I{i}' for i in uniq(pkgconfig_includes)]),
301 EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags) + [f'-D{i}' for i in uniq(pkgconfig_defines)]),
302 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS if bld.env.HAVE_OSX_FRAMEWORKS else '')
303
304 # Install sample config
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500305 bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample')
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600306
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500307 if bld.env.SPHINX_BUILD:
308 bld(features='sphinx',
309 name='manpages',
310 builder='man',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500311 config='docs/conf.py',
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400312 outdir='docs/manpages',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400313 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500314 install_path='${MANDIR}',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400315 version=VERSION_BASE,
316 release=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700317
318def docs(bld):
319 from waflib import Options
320 Options.commands = ['doxygen', 'sphinx'] + Options.commands
321
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000322def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700323 version(bld)
324
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800325 if not bld.env.DOXYGEN:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500326 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700327
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500328 bld(features='subst',
329 name='doxygen.conf',
330 source=['docs/doxygen.conf.in',
331 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
332 target=['docs/doxygen.conf',
333 'docs/named_data_theme/named_data_footer-with-analytics.html'],
334 VERSION=VERSION,
Davide Pesaventodbe645f2021-04-16 00:42:52 -0400335 HAVE_DOT='YES' if bld.env.DOT else 'NO',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500336 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
337 if os.getenv('GOOGLE_ANALYTICS', None) \
338 else '../docs/named_data_theme/named_data_footer.html',
339 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
340
341 bld(features='doxygen',
342 doxyfile='docs/doxygen.conf',
343 use='doxygen.conf')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800344
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700345def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700346 version(bld)
347
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700348 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500349 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
350
351 bld(features='sphinx',
352 config='docs/conf.py',
353 outdir='docs',
354 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventob310efb2019-04-11 22:10:24 -0400355 version=VERSION_BASE,
356 release=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700357
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700358def version(ctx):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500359 # don't execute more than once
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700360 if getattr(Context.g_module, 'VERSION_BASE', None):
361 return
362
363 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500364 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700365
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500366 # first, try to get a version string from git
367 gotVersionFromGit = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700368 try:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400369 cmd = ['git', 'describe', '--always', '--match', f'{GIT_TAG_PREFIX}*']
370 out = subprocess.run(cmd, capture_output=True, check=True, text=True).stdout.strip()
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500371 if out:
372 gotVersionFromGit = True
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700373 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500374 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700375 else:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500376 # no tags matched
Davide Pesaventoc9967422023-09-07 22:04:34 -0400377 Context.g_module.VERSION = f'{VERSION_BASE}-commit-{out}'
378 except (OSError, subprocess.SubprocessError):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700379 pass
380
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400381 versionFile = ctx.path.find_node('VERSION.info')
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500382 if not gotVersionFromGit and versionFile is not None:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700383 try:
384 Context.g_module.VERSION = versionFile.read()
385 return
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500386 except EnvironmentError:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700387 pass
388
389 # version was obtained from git, update VERSION file if necessary
390 if versionFile is not None:
391 try:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500392 if versionFile.read() == Context.g_module.VERSION:
393 # already up-to-date
394 return
395 except EnvironmentError as e:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400396 Logs.warn(f'{versionFile} exists but is not readable ({e.strerror})')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700397 else:
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400398 versionFile = ctx.path.make_node('VERSION.info')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700399
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700400 try:
401 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500402 except EnvironmentError as e:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400403 Logs.warn(f'{versionFile} is not writable ({e.strerror})')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700404
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700405def dist(ctx):
Davide Pesaventoae39daf2023-02-14 23:46:46 -0500406 ctx.algo = 'tar.xz'
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700407 version(ctx)
408
409def distcheck(ctx):
Davide Pesaventoae39daf2023-02-14 23:46:46 -0500410 ctx.algo = 'tar.xz'
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700411 version(ctx)