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 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 3 | from waflib import Context, Logs, Utils |
| 4 | import os, subprocess |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 5 | |
Alexander Afanasyev | a3bf431 | 2018-09-16 20:43:06 -0400 | [diff] [blame] | 6 | VERSION = '0.6.3' |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 7 | APPNAME = 'ndn-cxx' |
| 8 | PACKAGE_BUGREPORT = 'https://redmine.named-data.net/projects/ndn-cxx' |
| 9 | PACKAGE_URL = 'http://named-data.net/doc/ndn-cxx/' |
| 10 | GIT_TAG_PREFIX = 'ndn-cxx-' |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 11 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 12 | def options(opt): |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 13 | opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx']) |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 14 | opt.load(['default-compiler-flags', 'compiler-features', |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 15 | 'coverage', 'pch', 'sanitizers', 'osx-frameworks', |
Alexander Afanasyev | adc7184 | 2017-01-26 22:17:58 -0500 | [diff] [blame] | 16 | 'boost', 'openssl', 'sqlite3', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 17 | 'doxygen', 'sphinx_build'], |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 18 | tooldir=['.waf-tools']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 19 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 20 | opt = opt.add_option_group('Library Options') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 21 | |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 22 | opt.add_option('--with-examples', action='store_true', default=False, |
| 23 | help='Build examples') |
| 24 | |
| 25 | opt.add_option('--with-tests', action='store_true', default=False, |
| 26 | help='Build unit tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 27 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 28 | opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools', |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 29 | help='Do not build tools') |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 30 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 31 | opt.add_option('--without-sqlite-locking', action='store_false', default=True, |
| 32 | dest='with_sqlite_locking', |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 33 | help='Disable filesystem locking in sqlite3 database ' |
| 34 | '(use unix-dot locking mechanism instead). ' |
| 35 | 'This option may be necessary if the home directory is hosted on NFS.') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 36 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 37 | opt.add_option('--without-osx-keychain', action='store_false', default=True, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 38 | dest='with_osx_keychain', help='Do not use macOS Keychain as default TPM (macOS only)') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 39 | |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 40 | opt.add_option('--enable-static', action='store_true', default=False, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 41 | dest='enable_static', help='Build static library (disabled by default)') |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 42 | opt.add_option('--disable-static', action='store_false', default=False, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 43 | dest='enable_static', help='Do not build static library (disabled by default)') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 44 | |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 45 | opt.add_option('--enable-shared', action='store_true', default=True, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 46 | dest='enable_shared', help='Build shared library (enabled by default)') |
Spyridon Mastorakis | 5ebfda6 | 2015-07-21 20:57:40 -0700 | [diff] [blame] | 47 | opt.add_option('--disable-shared', action='store_false', default=True, |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 48 | dest='enable_shared', help='Do not build shared library (enabled by default)') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 49 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 50 | def configure(conf): |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 51 | conf.start_msg('Building static library') |
| 52 | if conf.options.enable_static: |
| 53 | conf.end_msg('yes') |
| 54 | else: |
| 55 | conf.end_msg('no', color='YELLOW') |
| 56 | conf.env.enable_static = conf.options.enable_static |
| 57 | |
| 58 | conf.start_msg('Building shared library') |
| 59 | if conf.options.enable_shared: |
| 60 | conf.end_msg('yes') |
| 61 | else: |
| 62 | conf.end_msg('no', color='YELLOW') |
| 63 | conf.env.enable_shared = conf.options.enable_shared |
| 64 | |
| 65 | if not conf.options.enable_shared and not conf.options.enable_static: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 66 | conf.fatal('Either static library or shared library must be enabled') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 67 | |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 68 | conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx', |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 69 | 'default-compiler-flags', 'compiler-features', |
Alexander Afanasyev | adc7184 | 2017-01-26 22:17:58 -0500 | [diff] [blame] | 70 | 'pch', 'osx-frameworks', 'boost', 'openssl', 'sqlite3', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 71 | 'doxygen', 'sphinx_build']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 72 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 73 | conf.env['WITH_TESTS'] = conf.options.with_tests |
| 74 | conf.env['WITH_TOOLS'] = conf.options.with_tools |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 75 | conf.env['WITH_EXAMPLES'] = conf.options.with_examples |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 76 | |
Alexander Afanasyev | 95de62e | 2014-04-11 18:26:33 -0700 | [diff] [blame] | 77 | conf.find_program('sh', var='SH', mandatory=True) |
| 78 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 79 | 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] | 80 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 81 | 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] | 82 | fragment='''#include <unistd.h> |
| 83 | int main() { getpass("Enter password"); }''') |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 84 | |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 85 | 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] | 86 | header_name=['linux/if_addr.h', 'linux/if_link.h', |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 87 | 'linux/netlink.h', 'linux/rtnetlink.h', 'linux/genetlink.h']): |
| 88 | conf.env['HAVE_NETLINK'] = True |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 89 | conf.check_cxx(msg='Checking for NETLINK_EXT_ACK', define_name='HAVE_NETLINK_EXT_ACK', mandatory=False, |
| 90 | fragment='''#include <linux/netlink.h> |
| 91 | int main() { return NETLINK_EXT_ACK; }''') |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 92 | 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] | 93 | fragment='''#include <linux/if_addr.h> |
| 94 | int main() { return IFA_FLAGS; }''') |
Alexander Afanasyev | 7b3080f | 2015-01-28 21:21:01 -0800 | [diff] [blame] | 95 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 96 | conf.check_osx_frameworks() |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 97 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 98 | conf.check_sqlite3(mandatory=True) |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 99 | conf.check_openssl(mandatory=True, atleast_version=0x1000200f) # 1.0.2 |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 100 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 101 | USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams', |
Davide Pesavento | 90db7ee | 2018-06-10 11:33:31 -0400 | [diff] [blame] | 102 | 'program_options', 'chrono', 'thread', 'log', 'log_setup'] |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 103 | |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 104 | if conf.env['WITH_TESTS']: |
| 105 | USED_BOOST_LIBS += ['unit_test_framework'] |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 106 | conf.define('HAVE_TESTS', 1) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 107 | |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 108 | conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True, mt=True) |
Davide Pesavento | 844b093 | 2018-05-07 01:00:16 -0400 | [diff] [blame] | 109 | if conf.env.BOOST_VERSION_NUMBER < 105800: |
| 110 | conf.fatal('Minimum required Boost version is 1.58.0\n' |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 111 | 'Please upgrade your distribution or manually install a newer version of Boost' |
| 112 | ' (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 113 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 114 | if not conf.options.with_sqlite_locking: |
| 115 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 116 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 117 | if conf.env['HAVE_OSX_FRAMEWORKS']: |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 118 | conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain |
| 119 | if conf.options.with_osx_keychain: |
| 120 | conf.define('WITH_OSX_KEYCHAIN', 1) |
| 121 | else: |
| 122 | conf.env['WITH_OSX_KEYCHAIN'] = False |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 123 | |
Alexander Afanasyev | b82d8c3 | 2017-09-21 11:35:07 -0400 | [diff] [blame] | 124 | conf.check_compiler_flags() |
| 125 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 126 | # Loading "late" to prevent tests from being compiled with profiling flags |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 127 | conf.load('coverage') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 128 | |
Eric Newberry | a3973e0 | 2016-11-01 17:58:12 -0700 | [diff] [blame] | 129 | conf.load('sanitizers') |
| 130 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 131 | conf.define('SYSCONFDIR', conf.env['SYSCONFDIR']) |
| 132 | |
Alexander Afanasyev | 224044f | 2016-07-18 10:45:08 +0200 | [diff] [blame] | 133 | if not conf.env.enable_static: |
| 134 | # If there happens to be a static library, waf will put the corresponding -L flags |
| 135 | # before dynamic library flags. This can result in compilation failure when the |
| 136 | # system has a different version of the ndn-cxx library installed. |
| 137 | conf.env['STLIBPATH'] = ['.'] + conf.env['STLIBPATH'] |
| 138 | |
Alexander Afanasyev | 3e7d2ac | 2015-02-10 19:39:28 -0800 | [diff] [blame] | 139 | # config file will contain all defines that were added using conf.define('xxx'...) |
| 140 | # Everything that was added directly to conf.env['DEFINES'] will not appear in the |
| 141 | # config file and will be added using compiler directives in the command line. |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 142 | 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] | 143 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 144 | def build(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 145 | version(bld) |
| 146 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 147 | bld(features='subst', |
| 148 | name='version.hpp', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 149 | source='ndn-cxx/version.hpp.in', |
| 150 | target='ndn-cxx/version.hpp', |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 151 | install_path=None, |
| 152 | VERSION_STRING=VERSION_BASE, |
| 153 | VERSION_BUILD=VERSION, |
| 154 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 155 | int(VERSION_SPLIT[1]) * 1000 + |
| 156 | int(VERSION_SPLIT[2]), |
| 157 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 158 | VERSION_MINOR=VERSION_SPLIT[1], |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 159 | VERSION_PATCH=VERSION_SPLIT[2]) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 160 | |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 161 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
| 162 | # Need to disable precompiled headers for Objective-C++ code |
| 163 | bld(features=['cxx'], |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 164 | target='ndn-cxx-mm-objects', |
| 165 | source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'), |
| 166 | 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] | 167 | includes='.') |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 168 | |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 169 | libndn_cxx = dict( |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 170 | target='ndn-cxx', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 171 | source=bld.path.ant_glob('ndn-cxx/**/*.cpp', |
| 172 | excl=['ndn-cxx/**/*-osx.cpp', |
| 173 | 'ndn-cxx/**/*netlink*.cpp', |
| 174 | 'ndn-cxx/**/*-sqlite3.cpp']), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 175 | features='pch', |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 176 | headers='ndn-cxx/impl/common-pch.hpp', |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 177 | use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 RT PTHREAD', |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 178 | includes='.', |
| 179 | export_includes='.', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 180 | install_path='${LIBDIR}') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 181 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 182 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 183 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp') |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 184 | 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] | 185 | |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 186 | if bld.env['HAVE_NETLINK']: |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 187 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp') |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 188 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 189 | # In case we want to make it optional later |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 190 | libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 191 | |
| 192 | if bld.env.enable_shared: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 193 | bld.shlib(name='ndn-cxx', |
| 194 | vnum=VERSION_BASE, |
| 195 | cnum=VERSION_BASE, |
| 196 | **libndn_cxx) |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 197 | |
| 198 | if bld.env.enable_static: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 199 | bld.stlib(name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx', |
| 200 | **libndn_cxx) |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 201 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 202 | # Prepare flags that should go to pkgconfig file |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 203 | pkgconfig_libs = [] |
| 204 | pkgconfig_ldflags = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 205 | pkgconfig_linkflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 206 | pkgconfig_includes = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 207 | pkgconfig_cxxflags = [] |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 208 | for lib in Utils.to_list(libndn_cxx['use']): |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 209 | if bld.env['LIB_%s' % lib]: |
| 210 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 211 | if bld.env['LIBPATH_%s' % lib]: |
| 212 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 213 | if bld.env['INCLUDES_%s' % lib]: |
| 214 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 215 | if bld.env['LINKFLAGS_%s' % lib]: |
| 216 | pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib]) |
| 217 | if bld.env['CXXFLAGS_%s' % lib]: |
| 218 | pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib]) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 219 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 220 | EXTRA_FRAMEWORKS = '' |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 221 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 222 | EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN' |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 223 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 224 | def uniq(alist): |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 225 | seen = set() |
| 226 | return [x for x in alist if x not in seen and not seen.add(x)] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 227 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 228 | pkconfig = bld(features='subst', |
| 229 | source='libndn-cxx.pc.in', |
| 230 | target='libndn-cxx.pc', |
| 231 | install_path='${LIBDIR}/pkgconfig', |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 232 | VERSION=VERSION_BASE, |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 233 | |
| 234 | # This probably not the right thing to do, but to simplify life of apps |
| 235 | # that use the library |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 236 | EXTRA_LIBS=' '.join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 237 | EXTRA_LDFLAGS=' '.join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 238 | EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)), |
| 239 | EXTRA_INCLUDES=' '.join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
| 240 | EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags)), |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 241 | EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 242 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 243 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 244 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 245 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 246 | if bld.env['WITH_TOOLS']: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 247 | bld.recurse('tools') |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 248 | |
| 249 | if bld.env['WITH_EXAMPLES']: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 250 | bld.recurse('examples') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 251 | |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 252 | headers = bld.path.ant_glob('ndn-cxx/**/*.hpp', |
| 253 | excl=['ndn-cxx/**/*-osx.hpp', |
| 254 | 'ndn-cxx/**/*netlink*.hpp', |
| 255 | 'ndn-cxx/**/*-sqlite3.hpp', |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 256 | 'ndn-cxx/**/impl/**/*']) |
Davide Pesavento | 50b9226 | 2018-07-11 12:28:31 -0400 | [diff] [blame] | 257 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 258 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 259 | 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] | 260 | |
Davide Pesavento | 474c3b2 | 2018-08-25 16:24:43 -0400 | [diff] [blame] | 261 | if bld.env['HAVE_NETLINK']: |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 262 | headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*') |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 263 | |
| 264 | # In case we want to make it optional later |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 265 | 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] | 266 | |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 267 | bld.install_files(bld.env['INCLUDEDIR'], headers, relative_trick=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 268 | |
Junxiao Shi | d1fc9a7 | 2018-12-12 16:35:34 +0000 | [diff] [blame] | 269 | # Install generated headers |
| 270 | for filename in ['ndn-cxx/detail/config.hpp', 'ndn-cxx/version.hpp']: |
| 271 | bld.install_files('%s/%s' % (bld.env['INCLUDEDIR'], os.path.dirname(filename)), |
| 272 | bld.path.find_resource(filename)) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 273 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 274 | bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample') |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 275 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 276 | if bld.env.SPHINX_BUILD: |
| 277 | bld(features='sphinx', |
| 278 | name='manpages', |
| 279 | builder='man', |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 280 | config='docs/conf.py', |
Davide Pesavento | 4b8eab7 | 2018-09-01 20:10:36 -0400 | [diff] [blame] | 281 | outdir='docs/manpages', |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 282 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 283 | install_path='${MANDIR}', |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 284 | VERSION=VERSION) |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 285 | |
| 286 | def docs(bld): |
| 287 | from waflib import Options |
| 288 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 289 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 290 | def doxygen(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 291 | version(bld) |
| 292 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 293 | if not bld.env.DOXYGEN: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 294 | bld.fatal('Cannot build documentation ("doxygen" not found in PATH)') |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 295 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 296 | bld(features='subst', |
| 297 | name='doxygen.conf', |
| 298 | source=['docs/doxygen.conf.in', |
| 299 | 'docs/named_data_theme/named_data_footer-with-analytics.html.in'], |
| 300 | target=['docs/doxygen.conf', |
| 301 | 'docs/named_data_theme/named_data_footer-with-analytics.html'], |
| 302 | VERSION=VERSION, |
| 303 | HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \ |
| 304 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 305 | else '../docs/named_data_theme/named_data_footer.html', |
| 306 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', '')) |
| 307 | |
| 308 | bld(features='doxygen', |
| 309 | doxyfile='docs/doxygen.conf', |
| 310 | use='doxygen.conf') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 311 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 312 | def sphinx(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 313 | version(bld) |
| 314 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 315 | if not bld.env.SPHINX_BUILD: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 316 | bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)') |
| 317 | |
| 318 | bld(features='sphinx', |
| 319 | config='docs/conf.py', |
| 320 | outdir='docs', |
| 321 | source=bld.path.ant_glob('docs/**/*.rst'), |
| 322 | VERSION=VERSION) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 323 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 324 | def version(ctx): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 325 | # don't execute more than once |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 326 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 327 | return |
| 328 | |
| 329 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 330 | Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.') |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 331 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 332 | # first, try to get a version string from git |
| 333 | gotVersionFromGit = False |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 334 | try: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 335 | cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX] |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 336 | out = subprocess.check_output(cmd, universal_newlines=True).strip() |
| 337 | if out: |
| 338 | gotVersionFromGit = True |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 339 | if out.startswith(GIT_TAG_PREFIX): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 340 | Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 341 | else: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 342 | # no tags matched |
| 343 | Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out) |
Davide Pesavento | 21be816 | 2018-05-10 20:36:37 -0400 | [diff] [blame] | 344 | except (OSError, subprocess.CalledProcessError): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 345 | pass |
| 346 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 347 | versionFile = ctx.path.find_node('VERSION') |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 348 | if not gotVersionFromGit and versionFile is not None: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 349 | try: |
| 350 | Context.g_module.VERSION = versionFile.read() |
| 351 | return |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 352 | except EnvironmentError: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 353 | pass |
| 354 | |
| 355 | # version was obtained from git, update VERSION file if necessary |
| 356 | if versionFile is not None: |
| 357 | try: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 358 | if versionFile.read() == Context.g_module.VERSION: |
| 359 | # already up-to-date |
| 360 | return |
| 361 | except EnvironmentError as e: |
| 362 | Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 363 | else: |
| 364 | versionFile = ctx.path.make_node('VERSION') |
| 365 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 366 | try: |
| 367 | versionFile.write(Context.g_module.VERSION) |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 368 | except EnvironmentError as e: |
| 369 | Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 370 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 371 | def dist(ctx): |
| 372 | version(ctx) |
| 373 | |
| 374 | def distcheck(ctx): |
| 375 | version(ctx) |