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 | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 6 | VERSION = '0.6.1' |
| 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 | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 14 | opt.load(['default-compiler-flags', 'compiler-features', 'type_traits', |
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', |
| 70 | 'default-compiler-flags', 'compiler-features', 'type_traits', |
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, |
| 92 | fragment=''' |
| 93 | #include <linux/if_addr.h> |
| 94 | int main() { return IFA_FLAGS; } |
| 95 | ''') |
Alexander Afanasyev | 7b3080f | 2015-01-28 21:21:01 -0800 | [diff] [blame] | 96 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 97 | conf.check_osx_frameworks() |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 98 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 99 | conf.check_sqlite3(mandatory=True) |
Yingdi Yu | b3015bd | 2015-06-23 23:21:53 -0700 | [diff] [blame] | 100 | conf.check_openssl(mandatory=True, atleast_version=0x10001000) # 1.0.1 |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 101 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 102 | USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams', |
Davide Pesavento | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 103 | 'regex', 'program_options', 'chrono', 'thread', |
| 104 | 'log', 'log_setup'] |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 105 | |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 106 | if conf.env['WITH_TESTS']: |
| 107 | USED_BOOST_LIBS += ['unit_test_framework'] |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 108 | conf.define('HAVE_TESTS', 1) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 109 | |
Junxiao Shi | 7d05427 | 2016-08-04 17:00:41 +0000 | [diff] [blame] | 110 | conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True, mt=True) |
Davide Pesavento | e6e6fde | 2016-04-16 14:44:45 +0200 | [diff] [blame] | 111 | if conf.env.BOOST_VERSION_NUMBER < 105400: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 112 | conf.fatal('Minimum required Boost version is 1.54.0\n' |
| 113 | 'Please upgrade your distribution or manually install a newer version of Boost' |
| 114 | ' (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 115 | |
Davide Pesavento | 81bf95c | 2017-05-27 14:23:08 -0400 | [diff] [blame] | 116 | if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800: |
| 117 | conf.env.append_value('DEFINES', 'BOOST_ASIO_HAS_STD_ARRAY=1') # Bug #4096 |
| 118 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 119 | if not conf.options.with_sqlite_locking: |
| 120 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 121 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 122 | if conf.env['HAVE_OSX_FRAMEWORKS']: |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 123 | conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain |
| 124 | if conf.options.with_osx_keychain: |
| 125 | conf.define('WITH_OSX_KEYCHAIN', 1) |
| 126 | else: |
| 127 | conf.env['WITH_OSX_KEYCHAIN'] = False |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 128 | |
Alexander Afanasyev | b82d8c3 | 2017-09-21 11:35:07 -0400 | [diff] [blame] | 129 | conf.check_compiler_flags() |
| 130 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 131 | # Loading "late" to prevent tests from being compiled with profiling flags |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 132 | conf.load('coverage') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 133 | |
Eric Newberry | a3973e0 | 2016-11-01 17:58:12 -0700 | [diff] [blame] | 134 | conf.load('sanitizers') |
| 135 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 136 | conf.define('SYSCONFDIR', conf.env['SYSCONFDIR']) |
| 137 | |
Alexander Afanasyev | 224044f | 2016-07-18 10:45:08 +0200 | [diff] [blame] | 138 | if not conf.env.enable_static: |
| 139 | # If there happens to be a static library, waf will put the corresponding -L flags |
| 140 | # before dynamic library flags. This can result in compilation failure when the |
| 141 | # system has a different version of the ndn-cxx library installed. |
| 142 | conf.env['STLIBPATH'] = ['.'] + conf.env['STLIBPATH'] |
| 143 | |
Alexander Afanasyev | 3e7d2ac | 2015-02-10 19:39:28 -0800 | [diff] [blame] | 144 | # config file will contain all defines that were added using conf.define('xxx'...) |
| 145 | # Everything that was added directly to conf.env['DEFINES'] will not appear in the |
| 146 | # 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] | 147 | 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] | 148 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 149 | def build(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 150 | version(bld) |
| 151 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 152 | bld(features='subst', |
| 153 | name='version.hpp', |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 154 | source='src/version.hpp.in', |
| 155 | target='src/version.hpp', |
| 156 | install_path=None, |
| 157 | VERSION_STRING=VERSION_BASE, |
| 158 | VERSION_BUILD=VERSION, |
| 159 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 160 | int(VERSION_SPLIT[1]) * 1000 + |
| 161 | int(VERSION_SPLIT[2]), |
| 162 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 163 | VERSION_MINOR=VERSION_SPLIT[1], |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 164 | VERSION_PATCH=VERSION_SPLIT[2]) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 165 | |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 166 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
| 167 | # Need to disable precompiled headers for Objective-C++ code |
| 168 | bld(features=['cxx'], |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 169 | target='ndn-cxx-mm', |
| 170 | name='ndn-cxx-mm', |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 171 | source=bld.path.ant_glob(['src/**/*-osx.mm']), |
Alexander Afanasyev | adc7184 | 2017-01-26 22:17:58 -0500 | [diff] [blame] | 172 | 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] | 173 | includes='src') |
Alexander Afanasyev | 7cd43ab | 2017-03-27 21:33:10 -0500 | [diff] [blame] | 174 | |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 175 | libndn_cxx = dict( |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 176 | target='ndn-cxx', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 177 | source=bld.path.ant_glob('src/**/*.cpp', |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 178 | excl=['src/**/*-osx.cpp', |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 179 | 'src/**/*-rtnl.cpp', |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 180 | 'src/**/*-sqlite3.cpp']), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 181 | features='pch', |
Alexander Afanasyev | 8b1674a | 2014-05-15 00:58:43 -0700 | [diff] [blame] | 182 | headers='src/common-pch.hpp', |
Alexander Afanasyev | adc7184 | 2017-01-26 22:17:58 -0500 | [diff] [blame] | 183 | use='version ndn-cxx-mm BOOST OPENSSL SQLITE3 RT PTHREAD', |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 184 | includes='. src', |
| 185 | export_includes='src', |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 186 | install_path='${LIBDIR}') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 187 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 188 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
| 189 | libndn_cxx['source'] += bld.path.ant_glob('src/**/*-osx.cpp') |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 190 | 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] | 191 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 192 | if bld.env['HAVE_RTNETLINK']: |
| 193 | libndn_cxx['source'] += bld.path.ant_glob('src/**/*-rtnl.cpp') |
| 194 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 195 | # In case we want to make it optional later |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 196 | libndn_cxx['source'] += bld.path.ant_glob('src/**/*-sqlite3.cpp') |
| 197 | |
| 198 | if bld.env.enable_shared: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 199 | bld.shlib(name='ndn-cxx', |
| 200 | vnum=VERSION_BASE, |
| 201 | cnum=VERSION_BASE, |
| 202 | **libndn_cxx) |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 203 | |
| 204 | if bld.env.enable_static: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 205 | bld.stlib(name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx', |
| 206 | **libndn_cxx) |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 207 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 208 | # Prepare flags that should go to pkgconfig file |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 209 | pkgconfig_libs = [] |
| 210 | pkgconfig_ldflags = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 211 | pkgconfig_linkflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 212 | pkgconfig_includes = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 213 | pkgconfig_cxxflags = [] |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 214 | for lib in Utils.to_list(libndn_cxx['use']): |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 215 | if bld.env['LIB_%s' % lib]: |
| 216 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 217 | if bld.env['LIBPATH_%s' % lib]: |
| 218 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 219 | if bld.env['INCLUDES_%s' % lib]: |
| 220 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 221 | if bld.env['LINKFLAGS_%s' % lib]: |
| 222 | pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib]) |
| 223 | if bld.env['CXXFLAGS_%s' % lib]: |
| 224 | pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib]) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 225 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 226 | EXTRA_FRAMEWORKS = '' |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 227 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 228 | 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] | 229 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 230 | def uniq(alist): |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 231 | seen = set() |
| 232 | 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] | 233 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 234 | pkconfig = bld(features='subst', |
| 235 | source='libndn-cxx.pc.in', |
| 236 | target='libndn-cxx.pc', |
| 237 | install_path='${LIBDIR}/pkgconfig', |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 238 | VERSION=VERSION_BASE, |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 239 | |
| 240 | # This probably not the right thing to do, but to simplify life of apps |
| 241 | # that use the library |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 242 | EXTRA_LIBS=' '.join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 243 | EXTRA_LDFLAGS=' '.join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 244 | EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)), |
| 245 | EXTRA_INCLUDES=' '.join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
| 246 | EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags)), |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 247 | EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 248 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 249 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 250 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 251 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 252 | if bld.env['WITH_TOOLS']: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 253 | bld.recurse('tools') |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 254 | |
| 255 | if bld.env['WITH_EXAMPLES']: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 256 | bld.recurse('examples') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 257 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 258 | headers = bld.path.ant_glob('src/**/*.hpp', |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 259 | excl=['src/**/*-osx.hpp', |
| 260 | 'src/**/*-rtnl.hpp', |
| 261 | 'src/**/*-sqlite3.hpp', |
| 262 | 'src/**/detail/**/*']) |
| 263 | if bld.env['HAVE_OSX_FRAMEWORKS']: |
| 264 | headers += bld.path.ant_glob('src/**/*-osx.hpp', excl='src/**/detail/**/*') |
| 265 | |
| 266 | if bld.env['HAVE_RTNETLINK']: |
| 267 | headers += bld.path.ant_glob('src/**/*-rtnl.hpp', excl='src/**/detail/**/*') |
| 268 | |
| 269 | # In case we want to make it optional later |
| 270 | headers += bld.path.ant_glob('src/**/*-sqlite3.hpp', excl='src/**/detail/**/*') |
Junxiao Shi | e30aaea | 2014-12-03 20:48:34 -0700 | [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'], headers, |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 273 | relative_trick=True, cwd=bld.path.find_node('src')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 274 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 275 | bld.install_files('%s/ndn-cxx' % bld.env['INCLUDEDIR'], |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 276 | bld.path.find_resource('src/ndn-cxx-config.hpp')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 277 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 278 | bld.install_files('%s/ndn-cxx' % bld.env['INCLUDEDIR'], |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 279 | bld.path.find_resource('src/version.hpp')) |
| 280 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 281 | bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample') |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 282 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 283 | if bld.env.SPHINX_BUILD: |
| 284 | bld(features='sphinx', |
| 285 | name='manpages', |
| 286 | builder='man', |
| 287 | outdir='docs/manpages', |
| 288 | config='docs/conf.py', |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 289 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 290 | install_path='${MANDIR}', |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 291 | VERSION=VERSION) |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 292 | |
| 293 | def docs(bld): |
| 294 | from waflib import Options |
| 295 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 296 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 297 | def doxygen(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 298 | version(bld) |
| 299 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 300 | if not bld.env.DOXYGEN: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 301 | bld.fatal('Cannot build documentation ("doxygen" not found in PATH)') |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 302 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 303 | bld(features='subst', |
| 304 | name='doxygen.conf', |
| 305 | source=['docs/doxygen.conf.in', |
| 306 | 'docs/named_data_theme/named_data_footer-with-analytics.html.in'], |
| 307 | target=['docs/doxygen.conf', |
| 308 | 'docs/named_data_theme/named_data_footer-with-analytics.html'], |
| 309 | VERSION=VERSION, |
| 310 | HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \ |
| 311 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 312 | else '../docs/named_data_theme/named_data_footer.html', |
| 313 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', '')) |
| 314 | |
| 315 | bld(features='doxygen', |
| 316 | doxyfile='docs/doxygen.conf', |
| 317 | use='doxygen.conf') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 318 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 319 | def sphinx(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 320 | version(bld) |
| 321 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 322 | if not bld.env.SPHINX_BUILD: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 323 | bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)') |
| 324 | |
| 325 | bld(features='sphinx', |
| 326 | config='docs/conf.py', |
| 327 | outdir='docs', |
| 328 | source=bld.path.ant_glob('docs/**/*.rst'), |
| 329 | VERSION=VERSION) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 330 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 331 | def version(ctx): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 332 | # don't execute more than once |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 333 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 334 | return |
| 335 | |
| 336 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 337 | Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.') |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 338 | |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 339 | # first, try to get a version string from git |
| 340 | gotVersionFromGit = False |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 341 | try: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 342 | cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX] |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 343 | out = subprocess.check_output(cmd, universal_newlines=True).strip() |
| 344 | if out: |
| 345 | gotVersionFromGit = True |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 346 | if out.startswith(GIT_TAG_PREFIX): |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 347 | Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 348 | else: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 349 | # no tags matched |
| 350 | Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out) |
| 351 | except subprocess.CalledProcessError: |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 352 | pass |
| 353 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 354 | versionFile = ctx.path.find_node('VERSION') |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 355 | if not gotVersionFromGit and versionFile is not None: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 356 | try: |
| 357 | Context.g_module.VERSION = versionFile.read() |
| 358 | return |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 359 | except EnvironmentError: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 360 | pass |
| 361 | |
| 362 | # version was obtained from git, update VERSION file if necessary |
| 363 | if versionFile is not None: |
| 364 | try: |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 365 | if versionFile.read() == Context.g_module.VERSION: |
| 366 | # already up-to-date |
| 367 | return |
| 368 | except EnvironmentError as e: |
| 369 | Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 370 | else: |
| 371 | versionFile = ctx.path.make_node('VERSION') |
| 372 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 373 | try: |
| 374 | versionFile.write(Context.g_module.VERSION) |
Alexander Afanasyev | 5560fd4 | 2018-03-07 17:03:03 -0500 | [diff] [blame] | 375 | except EnvironmentError as e: |
| 376 | Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 377 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 378 | def dist(ctx): |
| 379 | version(ctx) |
| 380 | |
| 381 | def distcheck(ctx): |
| 382 | version(ctx) |