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