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