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