Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 2 | |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 3 | import os |
| 4 | import subprocess |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 5 | from waflib import Context, Logs, Utils |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 6 | |
Davide Pesavento | 81de5d9 | 2022-12-30 01:08:05 -0500 | [diff] [blame] | 7 | VERSION = '0.8.1' |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 8 | APPNAME = 'ndn-cxx' |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 9 | GIT_TAG_PREFIX = 'ndn-cxx-' |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 10 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 11 | def options(opt): |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 12 | opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx']) |
Davide Pesavento | 869d1a3 | 2023-03-14 23:55:02 -0400 | [diff] [blame] | 13 | opt.load(['cross', 'default-compiler-flags', 'pch', |
| 14 | 'coverage', 'sanitizers', 'osx-frameworks', |
Alexander Afanasyev | adc7184 | 2017-01-26 22:17:58 -0500 | [diff] [blame] | 15 | 'boost', 'openssl', 'sqlite3', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 16 | 'doxygen', 'sphinx_build'], |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 17 | tooldir=['.waf-tools']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 18 | |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 19 | opt = opt.add_option_group('ndn-cxx Options') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 20 | |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 21 | opt.add_option('--enable-static', action='store_true', default=False, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 22 | dest='enable_static', help='Build static library (disabled by default)') |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 23 | opt.add_option('--disable-static', action='store_false', default=False, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 24 | dest='enable_static', help='Do not build static library (disabled by default)') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 25 | |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 26 | opt.add_option('--enable-shared', action='store_true', default=True, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 27 | dest='enable_shared', help='Build shared library (enabled by default)') |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 28 | opt.add_option('--disable-shared', action='store_false', default=True, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 29 | dest='enable_shared', help='Do not build shared library (enabled by default)') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 30 | |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 31 | 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, |
Davide Pesavento | 906dde5 | 2024-02-24 20:52:23 -0500 | [diff] [blame^] | 50 | help='Build all tests (benchmarks, integration tests, unit tests)') |
| 51 | opt.add_option('--with-benchmarks', action='store_true', default=False, |
| 52 | help='Build benchmarks') |
| 53 | opt.add_option('--with-integration-tests', action='store_true', default=False, |
| 54 | help='Build integration tests') |
| 55 | opt.add_option('--with-unit-tests', action='store_true', default=False, |
| 56 | help='Build unit tests') |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 57 | |
| 58 | opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools', |
| 59 | help='Do not build tools') |
| 60 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 61 | def configure(conf): |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 62 | conf.start_msg('Building static library') |
| 63 | if conf.options.enable_static: |
| 64 | conf.end_msg('yes') |
| 65 | else: |
| 66 | conf.end_msg('no', color='YELLOW') |
| 67 | conf.env.enable_static = conf.options.enable_static |
| 68 | |
| 69 | conf.start_msg('Building shared library') |
| 70 | if conf.options.enable_shared: |
| 71 | conf.end_msg('yes') |
| 72 | else: |
| 73 | conf.end_msg('no', color='YELLOW') |
| 74 | conf.env.enable_shared = conf.options.enable_shared |
| 75 | |
| 76 | if not conf.options.enable_shared and not conf.options.enable_static: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 77 | conf.fatal('Either static library or shared library must be enabled') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 78 | |
Davide Pesavento | 869d1a3 | 2023-03-14 23:55:02 -0400 | [diff] [blame] | 79 | conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx', |
| 80 | 'cross', 'default-compiler-flags', 'pch', |
| 81 | 'osx-frameworks', 'boost', 'openssl', 'sqlite3', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 82 | 'doxygen', 'sphinx_build']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 83 | |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 84 | conf.env.WITH_EXAMPLES = conf.options.with_examples |
Davide Pesavento | 906dde5 | 2024-02-24 20:52:23 -0500 | [diff] [blame^] | 85 | conf.env.WITH_BENCHMARKS = conf.options.with_benchmarks or conf.options.with_tests |
| 86 | conf.env.WITH_INTEGRATION_TESTS = conf.options.with_integration_tests or conf.options.with_tests |
| 87 | conf.env.WITH_UNIT_TESTS = conf.options.with_unit_tests or conf.options.with_tests |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 88 | conf.env.WITH_TOOLS = conf.options.with_tools |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 89 | |
Davide Pesavento | 2d7c585 | 2022-07-18 16:02:52 -0400 | [diff] [blame] | 90 | conf.find_program('dot', mandatory=False) |
Alexander Afanasyev | 95de62e | 2014-04-11 18:26:33 -0700 | [diff] [blame] | 91 | |
Eric Newberry | 9603325 | 2020-04-10 13:08:27 -0700 | [diff] [blame] | 92 | conf.check_cxx(lib='atomic', uselib_store='ATOMIC', define_name='HAVE_ATOMIC', mandatory=False) |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 93 | conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False) |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 94 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
Davide Pesavento | 78338c5 | 2020-04-20 23:00:02 -0400 | [diff] [blame] | 95 | |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 96 | conf.check_cxx(msg='Checking for function getpass', define_name='HAVE_GETPASS', mandatory=False, |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 97 | fragment='''#include <unistd.h> |
| 98 | int main() { getpass("Enter password"); }''') |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 99 | |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 100 | if conf.check_cxx(msg='Checking for netlink', define_name='HAVE_NETLINK', mandatory=False, |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 101 | header_name=['linux/if_addr.h', 'linux/if_link.h', |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 102 | 'linux/netlink.h', 'linux/rtnetlink.h', 'linux/genetlink.h']): |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 103 | conf.env.HAVE_NETLINK = True |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 104 | conf.check_cxx(msg='Checking for NETLINK_EXT_ACK', define_name='HAVE_NETLINK_EXT_ACK', mandatory=False, |
| 105 | fragment='''#include <linux/netlink.h> |
| 106 | int main() { return NETLINK_EXT_ACK; }''') |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 107 | conf.check_cxx(msg='Checking for IFA_FLAGS', define_name='HAVE_IFA_FLAGS', mandatory=False, |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 108 | fragment='''#include <linux/if_addr.h> |
| 109 | int main() { return IFA_FLAGS; }''') |
Alexander Afanasyev | 7b3080f | 2015-01-28 21:21:01 -0800 | [diff] [blame] | 110 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 111 | conf.check_osx_frameworks() |
Davide Pesavento | 77f1c76 | 2019-02-19 03:20:49 -0500 | [diff] [blame] | 112 | conf.check_sqlite3() |
Davide Pesavento | 273ea01 | 2022-02-20 17:50:02 -0500 | [diff] [blame] | 113 | conf.check_openssl(lib='crypto', atleast_version='1.1.1') |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 114 | |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 115 | conf.check_boost() |
| 116 | if conf.env.BOOST_VERSION_NUMBER < 107100: |
| 117 | conf.fatal('The minimum supported version of Boost is 1.71.0.\n' |
| 118 | 'Please upgrade your distribution or manually install a newer version of Boost.\n' |
| 119 | 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost') |
| 120 | |
| 121 | # Boost.Log requires Boost.Thread |
| 122 | boost_libs = ['chrono', 'filesystem', 'log', 'thread'] |
| 123 | |
| 124 | # Boost.Date_Time is header-only since 1.73 |
| 125 | if conf.env.BOOST_VERSION_NUMBER < 107300: |
| 126 | boost_libs.append('date_time') |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 127 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 128 | stacktrace_backend = conf.options.with_stacktrace |
| 129 | if stacktrace_backend is None: |
| 130 | # auto-detect |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 131 | for candidate in ('backtrace', 'basic'): |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 132 | try: |
Davide Pesavento | c996742 | 2023-09-07 22:04:34 -0400 | [diff] [blame] | 133 | conf.check_boost(lib=f'stacktrace_{candidate}', mt=True) |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 134 | except conf.errors.ConfigurationError: |
| 135 | continue |
| 136 | stacktrace_backend = candidate |
| 137 | break |
| 138 | if stacktrace_backend: |
| 139 | conf.env.HAVE_STACKTRACE = True |
| 140 | conf.env.append_unique('DEFINES_BOOST', ['BOOST_STACKTRACE_DYN_LINK']) |
Davide Pesavento | c996742 | 2023-09-07 22:04:34 -0400 | [diff] [blame] | 141 | boost_libs.append(f'stacktrace_{stacktrace_backend}') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 142 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 143 | conf.check_boost(lib=boost_libs, mt=True) |
Davide Pesavento | d8e0cad | 2021-05-26 21:43:47 -0400 | [diff] [blame] | 144 | |
Davide Pesavento | 906dde5 | 2024-02-24 20:52:23 -0500 | [diff] [blame^] | 145 | if any((conf.env.WITH_BENCHMARKS, conf.env.WITH_INTEGRATION_TESTS, conf.env.WITH_UNIT_TESTS)): |
Davide Pesavento | 5686c51 | 2023-09-07 22:08:46 -0400 | [diff] [blame] | 146 | conf.check_boost(lib='unit_test_framework', mt=True, uselib_store='BOOST_TESTS') |
| 147 | |
| 148 | if conf.env.WITH_TOOLS: |
| 149 | conf.check_boost(lib='program_options', mt=True, uselib_store='BOOST_TOOLS') |
| 150 | |
Alexander Afanasyev | b82d8c3 | 2017-09-21 11:35:07 -0400 | [diff] [blame] | 151 | conf.check_compiler_flags() |
| 152 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 153 | # Loading "late" to prevent tests from being compiled with profiling flags |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 154 | conf.load('coverage') |
Eric Newberry | a3973e0 | 2016-11-01 17:58:12 -0700 | [diff] [blame] | 155 | conf.load('sanitizers') |
| 156 | |
Alexander Afanasyev | 224044f | 2016-07-18 10:45:08 +0200 | [diff] [blame] | 157 | if not conf.env.enable_static: |
| 158 | # If there happens to be a static library, waf will put the corresponding -L flags |
| 159 | # before dynamic library flags. This can result in compilation failure when the |
| 160 | # system has a different version of the ndn-cxx library installed. |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 161 | conf.env.prepend_value('STLIBPATH', ['.']) |
Alexander Afanasyev | 224044f | 2016-07-18 10:45:08 +0200 | [diff] [blame] | 162 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 163 | conf.define_cond('HAVE_STACKTRACE', conf.env.HAVE_STACKTRACE) |
Davide Pesavento | 906dde5 | 2024-02-24 20:52:23 -0500 | [diff] [blame^] | 164 | conf.define_cond('HAVE_TESTS', conf.env.WITH_INTEGRATION_TESTS or conf.env.WITH_UNIT_TESTS) |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 165 | conf.define_cond('WITH_OSX_KEYCHAIN', conf.env.HAVE_OSX_FRAMEWORKS and conf.options.with_osx_keychain) |
| 166 | conf.define_cond('DISABLE_SQLITE3_FS_LOCKING', not conf.options.with_sqlite_locking) |
| 167 | conf.define('SYSCONFDIR', conf.env.SYSCONFDIR) |
| 168 | # The config header will contain all defines that were added using conf.define() |
| 169 | # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES |
| 170 | # will not appear in the config header, but will instead be passed directly to the |
| 171 | # compiler on the command line. |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 172 | conf.write_config_header('ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 173 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 174 | def build(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 175 | version(bld) |
| 176 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 177 | bld(features='subst', |
| 178 | name='version.hpp', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 179 | source='ndn-cxx/version.hpp.in', |
| 180 | target='ndn-cxx/version.hpp', |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 181 | install_path='${INCLUDEDIR}/ndn-cxx', |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 182 | VERSION_STRING=VERSION_BASE, |
| 183 | VERSION_BUILD=VERSION, |
| 184 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 185 | int(VERSION_SPLIT[1]) * 1000 + |
| 186 | int(VERSION_SPLIT[2]), |
| 187 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 188 | VERSION_MINOR=VERSION_SPLIT[1], |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 189 | VERSION_PATCH=VERSION_SPLIT[2]) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 190 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 191 | if bld.env.HAVE_OSX_FRAMEWORKS: |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 192 | # Need to disable precompiled headers for Objective-C++ code |
Davide Pesavento | 25d4f1c | 2020-04-29 23:31:04 -0400 | [diff] [blame] | 193 | bld(features='cxx', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 194 | target='ndn-cxx-mm-objects', |
| 195 | source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'), |
| 196 | use='BOOST PTHREAD OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN', |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 197 | includes='.') |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 198 | |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 199 | libndn_cxx = dict( |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 200 | target='ndn-cxx', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 201 | source=bld.path.ant_glob('ndn-cxx/**/*.cpp', |
Alexander Afanasyev | 39535f4 | 2019-07-05 22:07:52 -0400 | [diff] [blame] | 202 | excl=['ndn-cxx/**/*-android.cpp', |
| 203 | 'ndn-cxx/**/*-osx.cpp', |
| 204 | 'ndn-cxx/**/*-sqlite3.cpp', |
| 205 | 'ndn-cxx/**/*netlink*.cpp']), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 206 | features='pch', |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 207 | headers='ndn-cxx/impl/common-pch.hpp', |
Eric Newberry | 9603325 | 2020-04-10 13:08:27 -0700 | [diff] [blame] | 208 | use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 ATOMIC RT PTHREAD', |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 209 | includes='.', |
| 210 | export_includes='.', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 211 | install_path='${LIBDIR}') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 212 | |
Alexander Afanasyev | 39535f4 | 2019-07-05 22:07:52 -0400 | [diff] [blame] | 213 | if bld.env.HOST == 'android': |
| 214 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-android.cpp') |
| 215 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 216 | if bld.env.HAVE_OSX_FRAMEWORKS: |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 217 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp') |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 218 | libndn_cxx['use'] += ' OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN' |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 219 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 220 | # In case we want to make it optional later |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 221 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 222 | |
Alexander Afanasyev | 39535f4 | 2019-07-05 22:07:52 -0400 | [diff] [blame] | 223 | if bld.env.HAVE_NETLINK: |
| 224 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp') |
| 225 | |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 226 | if bld.env.enable_shared: |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 227 | bld.shlib( |
| 228 | name='ndn-cxx', |
| 229 | vnum=VERSION_BASE, |
| 230 | cnum=VERSION_BASE, |
| 231 | **libndn_cxx) |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 232 | |
| 233 | if bld.env.enable_static: |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 234 | bld.stlib( |
| 235 | name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx', |
| 236 | **libndn_cxx) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 237 | |
Davide Pesavento | 906dde5 | 2024-02-24 20:52:23 -0500 | [diff] [blame^] | 238 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 239 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 240 | if bld.env.WITH_TOOLS: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 241 | bld.recurse('tools') |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 242 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 243 | if bld.env.WITH_EXAMPLES: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 244 | bld.recurse('examples') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 245 | |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 246 | # Install header files |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 247 | headers = bld.path.ant_glob('ndn-cxx/**/*.hpp', |
Alexander Afanasyev | 39535f4 | 2019-07-05 22:07:52 -0400 | [diff] [blame] | 248 | excl=['ndn-cxx/**/*-android.hpp', |
| 249 | 'ndn-cxx/**/*-osx.hpp', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 250 | 'ndn-cxx/**/*-sqlite3.hpp', |
Alexander Afanasyev | 39535f4 | 2019-07-05 22:07:52 -0400 | [diff] [blame] | 251 | 'ndn-cxx/**/*netlink*.hpp', |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 252 | 'ndn-cxx/**/impl/**/*']) |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 253 | |
Alexander Afanasyev | 39535f4 | 2019-07-05 22:07:52 -0400 | [diff] [blame] | 254 | if bld.env.HOST == 'android': |
| 255 | headers += bld.path.ant_glob('ndn-cxx/**/*-android.hpp', excl='ndn-cxx/**/impl/**/*') |
| 256 | |
Davide Pesavento | fd67401 | 2019-02-06 02:00:12 -0500 | [diff] [blame] | 257 | if bld.env.HAVE_OSX_FRAMEWORKS: |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 258 | headers += bld.path.ant_glob('ndn-cxx/**/*-osx.hpp', excl='ndn-cxx/**/impl/**/*') |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 259 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 260 | # In case we want to make it optional later |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 261 | headers += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.hpp', excl='ndn-cxx/**/impl/**/*') |
Junxiao Shi | e30aaea | 2014-12-03 20:48:34 -0700 | [diff] [blame] | 262 | |
Alexander Afanasyev | 39535f4 | 2019-07-05 22:07:52 -0400 | [diff] [blame] | 263 | if bld.env.HAVE_NETLINK: |
| 264 | headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*') |
| 265 | |
Davide Pesavento | f3089c3 | 2021-05-25 21:28:21 -0400 | [diff] [blame] | 266 | bld.install_files('${INCLUDEDIR}', headers, relative_trick=True) |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 267 | bld.install_files('${INCLUDEDIR}/ndn-cxx/detail', 'ndn-cxx/detail/config.hpp') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 268 | |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 269 | # Prepare flags that should go into pkgconfig file |
| 270 | pkgconfig_libs = [] |
| 271 | pkgconfig_ldflags = [] |
| 272 | pkgconfig_linkflags = [] |
| 273 | pkgconfig_includes = [] |
| 274 | pkgconfig_cxxflags = [] |
| 275 | pkgconfig_defines = [] |
| 276 | for lib in Utils.to_list(libndn_cxx['use']): |
| 277 | if bld.env[f'LIB_{lib}']: |
| 278 | pkgconfig_libs += Utils.to_list(bld.env[f'LIB_{lib}']) |
| 279 | if bld.env[f'LIBPATH_{lib}']: |
| 280 | pkgconfig_ldflags += Utils.to_list(bld.env[f'LIBPATH_{lib}']) |
| 281 | if bld.env[f'LINKFLAGS_{lib}']: |
| 282 | pkgconfig_linkflags += Utils.to_list(bld.env[f'LINKFLAGS_{lib}']) |
| 283 | if bld.env[f'INCLUDES_{lib}']: |
| 284 | pkgconfig_includes += Utils.to_list(bld.env[f'INCLUDES_{lib}']) |
| 285 | if bld.env[f'CXXFLAGS_{lib}']: |
| 286 | pkgconfig_cxxflags += Utils.to_list(bld.env[f'CXXFLAGS_{lib}']) |
| 287 | if bld.env[f'DEFINES_{lib}']: |
| 288 | pkgconfig_defines += Utils.to_list(bld.env[f'DEFINES_{lib}']) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 289 | |
Davide Pesavento | 550d8c9 | 2023-11-05 01:30:01 -0400 | [diff] [blame] | 290 | EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN' |
| 291 | |
| 292 | def uniq(alist): |
| 293 | return list(dict.fromkeys(alist)) |
| 294 | |
| 295 | bld(features='subst', |
| 296 | source='libndn-cxx.pc.in', |
| 297 | target='libndn-cxx.pc', |
| 298 | install_path='${LIBDIR}/pkgconfig', |
| 299 | VERSION=VERSION_BASE, |
| 300 | # This probably not the right thing to do, but to simplify life of apps |
| 301 | # that use the library |
| 302 | EXTRA_LIBS=' '.join([f'-l{i}' for i in uniq(pkgconfig_libs)]), |
| 303 | EXTRA_LDFLAGS=' '.join([f'-L{i}' for i in uniq(pkgconfig_ldflags)]), |
| 304 | EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)), |
| 305 | EXTRA_INCLUDES=' '.join([f'-I{i}' for i in uniq(pkgconfig_includes)]), |
| 306 | EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags) + [f'-D{i}' for i in uniq(pkgconfig_defines)]), |
| 307 | EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS if bld.env.HAVE_OSX_FRAMEWORKS else '') |
| 308 | |
| 309 | # Install sample config |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 310 | bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample') |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 311 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 312 | if bld.env.SPHINX_BUILD: |
| 313 | bld(features='sphinx', |
| 314 | name='manpages', |
| 315 | builder='man', |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 316 | config='docs/conf.py', |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 317 | outdir='docs/manpages', |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 318 | source=bld.path.ant_glob('docs/manpages/*.rst'), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 319 | install_path='${MANDIR}', |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 320 | version=VERSION_BASE, |
| 321 | release=VERSION) |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 322 | |
| 323 | def docs(bld): |
| 324 | from waflib import Options |
| 325 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 326 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 327 | def doxygen(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 328 | version(bld) |
| 329 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 330 | if not bld.env.DOXYGEN: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 331 | bld.fatal('Cannot build documentation ("doxygen" not found in PATH)') |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 332 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 333 | bld(features='subst', |
| 334 | name='doxygen.conf', |
| 335 | source=['docs/doxygen.conf.in', |
| 336 | 'docs/named_data_theme/named_data_footer-with-analytics.html.in'], |
| 337 | target=['docs/doxygen.conf', |
| 338 | 'docs/named_data_theme/named_data_footer-with-analytics.html'], |
| 339 | VERSION=VERSION, |
Davide Pesavento | dbe645f | 2021-04-16 00:42:52 -0400 | [diff] [blame] | 340 | HAVE_DOT='YES' if bld.env.DOT else 'NO', |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 341 | HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \ |
| 342 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 343 | else '../docs/named_data_theme/named_data_footer.html', |
| 344 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', '')) |
| 345 | |
| 346 | bld(features='doxygen', |
| 347 | doxyfile='docs/doxygen.conf', |
| 348 | use='doxygen.conf') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 349 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 350 | def sphinx(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 351 | version(bld) |
| 352 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 353 | if not bld.env.SPHINX_BUILD: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 354 | bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)') |
| 355 | |
| 356 | bld(features='sphinx', |
| 357 | config='docs/conf.py', |
| 358 | outdir='docs', |
| 359 | source=bld.path.ant_glob('docs/**/*.rst'), |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 360 | version=VERSION_BASE, |
| 361 | release=VERSION) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 362 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 363 | def version(ctx): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 364 | # don't execute more than once |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 365 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 366 | return |
| 367 | |
| 368 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 369 | Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.') |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 370 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 371 | # first, try to get a version string from git |
| 372 | gotVersionFromGit = False |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 373 | try: |
Davide Pesavento | c996742 | 2023-09-07 22:04:34 -0400 | [diff] [blame] | 374 | cmd = ['git', 'describe', '--always', '--match', f'{GIT_TAG_PREFIX}*'] |
| 375 | out = subprocess.run(cmd, capture_output=True, check=True, text=True).stdout.strip() |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 376 | if out: |
| 377 | gotVersionFromGit = True |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 378 | if out.startswith(GIT_TAG_PREFIX): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 379 | Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 380 | else: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 381 | # no tags matched |
Davide Pesavento | c996742 | 2023-09-07 22:04:34 -0400 | [diff] [blame] | 382 | Context.g_module.VERSION = f'{VERSION_BASE}-commit-{out}' |
| 383 | except (OSError, subprocess.SubprocessError): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 384 | pass |
| 385 | |
Alexander Afanasyev | 3de8aac | 2020-05-28 20:51:43 -0400 | [diff] [blame] | 386 | versionFile = ctx.path.find_node('VERSION.info') |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 387 | if not gotVersionFromGit and versionFile is not None: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 388 | try: |
| 389 | Context.g_module.VERSION = versionFile.read() |
| 390 | return |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 391 | except EnvironmentError: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 392 | pass |
| 393 | |
| 394 | # version was obtained from git, update VERSION file if necessary |
| 395 | if versionFile is not None: |
| 396 | try: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 397 | if versionFile.read() == Context.g_module.VERSION: |
| 398 | # already up-to-date |
| 399 | return |
| 400 | except EnvironmentError as e: |
Davide Pesavento | c996742 | 2023-09-07 22:04:34 -0400 | [diff] [blame] | 401 | Logs.warn(f'{versionFile} exists but is not readable ({e.strerror})') |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 402 | else: |
Alexander Afanasyev | 3de8aac | 2020-05-28 20:51:43 -0400 | [diff] [blame] | 403 | versionFile = ctx.path.make_node('VERSION.info') |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 404 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 405 | try: |
| 406 | versionFile.write(Context.g_module.VERSION) |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 407 | except EnvironmentError as e: |
Davide Pesavento | c996742 | 2023-09-07 22:04:34 -0400 | [diff] [blame] | 408 | Logs.warn(f'{versionFile} is not writable ({e.strerror})') |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 409 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 410 | def dist(ctx): |
Davide Pesavento | ae39daf | 2023-02-14 23:46:46 -0500 | [diff] [blame] | 411 | ctx.algo = 'tar.xz' |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 412 | version(ctx) |
| 413 | |
| 414 | def distcheck(ctx): |
Davide Pesavento | ae39daf | 2023-02-14 23:46:46 -0500 | [diff] [blame] | 415 | ctx.algo = 'tar.xz' |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 416 | version(ctx) |