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 | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 3 | from waflib import Logs, Utils, Context |
| 4 | import os |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 5 | |
Alexander Afanasyev | aa8b378 | 2017-01-19 20:04:31 -0800 | [diff] [blame] | 6 | VERSION = "0.5.1" |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 7 | APPNAME = "ndn-cxx" |
Davide Pesavento | 0530b5b | 2016-11-07 03:23:58 +0100 | [diff] [blame] | 8 | PACKAGE_BUGREPORT = "https://redmine.named-data.net/projects/ndn-cxx" |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 9 | PACKAGE_URL = "http://named-data.net/doc/ndn-cxx/" |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 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', |
| 15 | 'coverage', 'pch', 'sanitizers', 'osx-security', |
| 16 | 'boost', 'cryptopp', 'openssl', 'sqlite3', |
| 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: |
| 67 | conf.fatal("Either static library or shared library must be enabled") |
| 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', |
Eric Newberry | a3973e0 | 2016-11-01 17:58:12 -0700 | [diff] [blame] | 71 | 'pch', 'osx-security', 'boost', 'cryptopp', '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) |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 82 | conf.check_cxx(function_name='getpass', header_name='unistd.h', mandatory=False) |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 83 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 84 | if conf.check_cxx(msg='Checking for rtnetlink', define_name='HAVE_RTNETLINK', mandatory=False, |
| 85 | header_name=['linux/if_addr.h', 'linux/if_link.h', |
| 86 | 'linux/netlink.h', 'linux/rtnetlink.h']): |
| 87 | conf.env['HAVE_RTNETLINK'] = True |
| 88 | conf.check_cxx(msg='Checking for IFA_FLAGS', define_name='HAVE_IFA_FLAGS', mandatory=False, |
| 89 | fragment=''' |
| 90 | #include <linux/if_addr.h> |
| 91 | int main() { return IFA_FLAGS; } |
| 92 | ''') |
Alexander Afanasyev | 7b3080f | 2015-01-28 21:21:01 -0800 | [diff] [blame] | 93 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 94 | conf.check_osx_security(mandatory=False) |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 95 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 96 | conf.check_sqlite3(mandatory=True) |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 97 | conf.check_cryptopp(mandatory=True, use='PTHREAD') |
Yingdi Yu | b3015bd | 2015-06-23 23:21:53 -0700 | [diff] [blame] | 98 | conf.check_openssl(mandatory=True, atleast_version=0x10001000) # 1.0.1 |
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 | 1cd9f6e | 2016-10-08 00:26:36 +0200 | [diff] [blame] | 101 | 'regex', 'program_options', 'chrono', 'thread', |
| 102 | '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 | e6e6fde | 2016-04-16 14:44:45 +0200 | [diff] [blame] | 109 | if conf.env.BOOST_VERSION_NUMBER < 105400: |
| 110 | Logs.error("Minimum required boost version is 1.54.0") |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 111 | Logs.error("Please upgrade your distribution or install custom boost libraries" + |
Davide Pesavento | 81bf95c | 2017-05-27 14:23:08 -0400 | [diff] [blame] | 112 | " (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 113 | return |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 114 | |
Davide Pesavento | 81bf95c | 2017-05-27 14:23:08 -0400 | [diff] [blame] | 115 | if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800: |
| 116 | conf.env.append_value('DEFINES', 'BOOST_ASIO_HAS_STD_ARRAY=1') # Bug #4096 |
| 117 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 118 | if not conf.options.with_sqlite_locking: |
| 119 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 120 | |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 121 | if conf.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 122 | conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain |
| 123 | if conf.options.with_osx_keychain: |
| 124 | conf.define('WITH_OSX_KEYCHAIN', 1) |
| 125 | else: |
| 126 | conf.env['WITH_OSX_KEYCHAIN'] = False |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 127 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 128 | # Loading "late" to prevent tests to be compiled with profiling flags |
| 129 | conf.load('coverage') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 130 | |
Eric Newberry | a3973e0 | 2016-11-01 17:58:12 -0700 | [diff] [blame] | 131 | conf.load('sanitizers') |
| 132 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 133 | conf.define('SYSCONFDIR', conf.env['SYSCONFDIR']) |
| 134 | |
Alexander Afanasyev | 224044f | 2016-07-18 10:45:08 +0200 | [diff] [blame] | 135 | if not conf.env.enable_static: |
| 136 | # If there happens to be a static library, waf will put the corresponding -L flags |
| 137 | # before dynamic library flags. This can result in compilation failure when the |
| 138 | # system has a different version of the ndn-cxx library installed. |
| 139 | conf.env['STLIBPATH'] = ['.'] + conf.env['STLIBPATH'] |
| 140 | |
Alexander Afanasyev | 3e7d2ac | 2015-02-10 19:39:28 -0800 | [diff] [blame] | 141 | # config file will contain all defines that were added using conf.define('xxx'...) |
| 142 | # Everything that was added directly to conf.env['DEFINES'] will not appear in the |
| 143 | # 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] | 144 | 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] | 145 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 146 | def build(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 147 | version(bld) |
| 148 | |
| 149 | bld(features="subst", |
| 150 | name='version', |
| 151 | source='src/version.hpp.in', |
| 152 | target='src/version.hpp', |
| 153 | install_path=None, |
| 154 | VERSION_STRING=VERSION_BASE, |
| 155 | VERSION_BUILD=VERSION, |
| 156 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 157 | int(VERSION_SPLIT[1]) * 1000 + |
| 158 | int(VERSION_SPLIT[2]), |
| 159 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 160 | VERSION_MINOR=VERSION_SPLIT[1], |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 161 | VERSION_PATCH=VERSION_SPLIT[2]) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 162 | |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 163 | libndn_cxx = dict( |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 164 | target="ndn-cxx", |
| 165 | name="ndn-cxx", |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 166 | source=bld.path.ant_glob('src/**/*.cpp', |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 167 | excl=['src/security/**/*-osx.cpp', |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 168 | 'src/**/*-rtnl.cpp', |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 169 | 'src/**/*-sqlite3.cpp']), |
Alexander Afanasyev | 8b1674a | 2014-05-15 00:58:43 -0700 | [diff] [blame] | 170 | headers='src/common-pch.hpp', |
Yingdi Yu | b3015bd | 2015-06-23 23:21:53 -0700 | [diff] [blame] | 171 | use='version BOOST CRYPTOPP OPENSSL SQLITE3 RT PTHREAD', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 172 | includes=". src", |
| 173 | export_includes="src", |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 174 | install_path='${LIBDIR}') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 175 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 176 | if bld.env['HAVE_RTNETLINK']: |
| 177 | libndn_cxx['source'] += bld.path.ant_glob('src/**/*-rtnl.cpp') |
| 178 | |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 179 | if bld.env['HAVE_OSX_SECURITY']: |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 180 | libndn_cxx['source'] += bld.path.ant_glob('src/security/**/*-osx.cpp') |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 181 | libndn_cxx['mac_app'] = True |
| 182 | libndn_cxx['use'] += " OSX_COREFOUNDATION OSX_SECURITY" |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 183 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 184 | # In case we want to make it optional later |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 185 | libndn_cxx['source'] += bld.path.ant_glob('src/**/*-sqlite3.cpp') |
| 186 | |
| 187 | if bld.env.enable_shared: |
| 188 | bld(features=['pch', 'cxx', 'cxxshlib'], |
| 189 | vnum=VERSION_BASE, |
| 190 | cnum=VERSION_BASE, |
| 191 | **libndn_cxx) |
| 192 | |
| 193 | if bld.env.enable_static: |
| 194 | bld(features=['pch', 'cxx', 'cxxstlib'], |
| 195 | **libndn_cxx) |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 196 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 197 | # Prepare flags that should go to pkgconfig file |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 198 | pkgconfig_libs = [] |
| 199 | pkgconfig_ldflags = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 200 | pkgconfig_linkflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 201 | pkgconfig_includes = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 202 | pkgconfig_cxxflags = [] |
Alexander Afanasyev | 5519cc7 | 2015-03-01 14:25:03 -0800 | [diff] [blame] | 203 | for lib in Utils.to_list(libndn_cxx['use']): |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 204 | if bld.env['LIB_%s' % lib]: |
| 205 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 206 | if bld.env['LIBPATH_%s' % lib]: |
| 207 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 208 | if bld.env['INCLUDES_%s' % lib]: |
| 209 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 210 | if bld.env['LINKFLAGS_%s' % lib]: |
| 211 | pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib]) |
| 212 | if bld.env['CXXFLAGS_%s' % lib]: |
| 213 | pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib]) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 214 | |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 215 | EXTRA_FRAMEWORKS = "" |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 216 | if bld.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 217 | EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security" |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 218 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 219 | def uniq(alist): |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 220 | seen = set() |
| 221 | 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] | 222 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 223 | pkconfig = bld(features="subst", |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 224 | source="libndn-cxx.pc.in", |
| 225 | target="libndn-cxx.pc", |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 226 | install_path="${LIBDIR}/pkgconfig", |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 227 | VERSION=VERSION_BASE, |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 228 | |
| 229 | # This probably not the right thing to do, but to simplify life of apps |
| 230 | # that use the library |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 231 | EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 232 | EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 233 | EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)), |
| 234 | EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
| 235 | EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)), |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 236 | EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 237 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 238 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 239 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 240 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 241 | if bld.env['WITH_TOOLS']: |
Alexander Afanasyev | c8bcd45 | 2014-05-12 17:58:47 -0700 | [diff] [blame] | 242 | bld.recurse("tools") |
| 243 | |
| 244 | if bld.env['WITH_EXAMPLES']: |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 245 | bld.recurse("examples") |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 246 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 247 | headers = bld.path.ant_glob('src/**/*.hpp', |
| 248 | excl=['src/security/**/*-osx.hpp', |
| 249 | 'src/detail/**/*', |
| 250 | 'src/util/detail/**/*']) |
Junxiao Shi | e30aaea | 2014-12-03 20:48:34 -0700 | [diff] [blame] | 251 | if bld.env['HAVE_OSX_SECURITY']: |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 252 | headers += bld.path.ant_glob('src/security/**/*-osx.hpp') |
Junxiao Shi | e30aaea | 2014-12-03 20:48:34 -0700 | [diff] [blame] | 253 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 254 | bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], headers, |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 255 | relative_trick=True, cwd=bld.path.find_node('src')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 256 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 257 | bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], |
| 258 | bld.path.find_resource('src/ndn-cxx-config.hpp')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 259 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 260 | bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], |
| 261 | bld.path.find_resource('src/version.hpp')) |
| 262 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 263 | bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample") |
| 264 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 265 | if bld.env['SPHINX_BUILD']: |
| 266 | bld(features="sphinx", |
| 267 | builder="man", |
| 268 | outdir="docs/manpages", |
| 269 | config="docs/conf.py", |
| 270 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 271 | install_path="${MANDIR}/", |
| 272 | VERSION=VERSION) |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 273 | |
| 274 | def docs(bld): |
| 275 | from waflib import Options |
| 276 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 277 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 278 | def doxygen(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 279 | version(bld) |
| 280 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 281 | if not bld.env.DOXYGEN: |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 282 | Logs.error("ERROR: cannot build documentation (`doxygen' not found in $PATH)") |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 283 | else: |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 284 | bld(features="subst", |
| 285 | name="doxygen-conf", |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 286 | source=["docs/doxygen.conf.in", |
| 287 | "docs/named_data_theme/named_data_footer-with-analytics.html.in"], |
| 288 | target=["docs/doxygen.conf", |
| 289 | "docs/named_data_theme/named_data_footer-with-analytics.html"], |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 290 | VERSION=VERSION, |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 291 | HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \ |
| 292 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 293 | else "../docs/named_data_theme/named_data_footer.html", |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 294 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', "")) |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 295 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 296 | bld(features="doxygen", |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 297 | doxyfile='docs/doxygen.conf', |
| 298 | use="doxygen-conf") |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 299 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 300 | def sphinx(bld): |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 301 | version(bld) |
| 302 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 303 | if not bld.env.SPHINX_BUILD: |
Davide Pesavento | 1349d2d | 2016-08-09 06:43:57 +0200 | [diff] [blame] | 304 | bld.fatal("ERROR: cannot build documentation (`sphinx-build' not found in $PATH)") |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 305 | else: |
| 306 | bld(features="sphinx", |
| 307 | outdir="docs", |
| 308 | source=bld.path.ant_glob("docs/**/*.rst"), |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 309 | config="docs/conf.py", |
| 310 | VERSION=VERSION) |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 311 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 312 | def version(ctx): |
| 313 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 314 | return |
| 315 | |
| 316 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
| 317 | Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')] |
| 318 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 319 | didGetVersion = False |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 320 | try: |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 321 | cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX] |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 322 | p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE, |
| 323 | stderr=None, stdin=None) |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 324 | out = str(p.communicate()[0].strip()) |
| 325 | didGetVersion = (p.returncode == 0 and out != "") |
| 326 | if didGetVersion: |
| 327 | if out.startswith(GIT_TAG_PREFIX): |
| 328 | Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):] |
| 329 | else: |
| 330 | Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out) |
| 331 | except OSError: |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 332 | pass |
| 333 | |
Alexander Afanasyev | 6c63230 | 2014-10-31 12:34:11 -0700 | [diff] [blame] | 334 | versionFile = ctx.path.find_node('VERSION') |
| 335 | |
| 336 | if not didGetVersion and versionFile is not None: |
| 337 | try: |
| 338 | Context.g_module.VERSION = versionFile.read() |
| 339 | return |
| 340 | except (OSError, IOError): |
| 341 | pass |
| 342 | |
| 343 | # version was obtained from git, update VERSION file if necessary |
| 344 | if versionFile is not None: |
| 345 | try: |
| 346 | version = versionFile.read() |
| 347 | if version == Context.g_module.VERSION: |
| 348 | return # no need to update |
| 349 | except (OSError, IOError): |
| 350 | Logs.warn("VERSION file exists, but not readable") |
| 351 | else: |
| 352 | versionFile = ctx.path.make_node('VERSION') |
| 353 | |
| 354 | if versionFile is None: |
| 355 | return |
| 356 | |
| 357 | try: |
| 358 | versionFile.write(Context.g_module.VERSION) |
| 359 | except (OSError, IOError): |
| 360 | Logs.warn("VERSION file is not writeable") |
| 361 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 362 | def dist(ctx): |
| 363 | version(ctx) |
| 364 | |
| 365 | def distcheck(ctx): |
| 366 | version(ctx) |