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 | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 2 | # |
| 3 | # Copyright (c) 2014, Regents of the University of California |
| 4 | # |
| 5 | # GPL 3.0 license, see the COPYING.md file for more information |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 6 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 7 | VERSION = '0.4.0' |
| 8 | APPNAME = "ndn-cpp-dev" |
| 9 | PACKAGE_BUGREPORT = "http://redmine.named-data.net/projects/ndn-cpp-dev" |
| 10 | PACKAGE_URL = "https://github.com/named-data/ndn-cpp-dev" |
| 11 | |
| 12 | from waflib import Logs, Utils, Task, TaskGen |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 13 | from waflib.Tools import c_preproc |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 14 | |
| 15 | def options(opt): |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 16 | opt.load('compiler_cxx gnu_dirs c_osx') |
| 17 | opt.load('boost doxygen openssl cryptopp coverage default-compiler-flags', |
| 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 | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 23 | help='''build unit tests''') |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 24 | opt.add_option('--with-log4cxx', action='store_true', default=False, dest='log4cxx', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 25 | help='''Compile with log4cxx logging support''') |
| 26 | |
| 27 | opt.add_option('--with-c++11', action='store_true', default=False, dest='use_cxx11', |
| 28 | help='''Use C++11 features, even if available in the compiler''') |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 29 | opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools', |
| 30 | help='''Do not build tools''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 31 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 32 | opt.add_option('--without-sqlite-locking', action='store_false', default=True, |
| 33 | dest='with_sqlite_locking', |
| 34 | help='''Disable filesystem locking in sqlite3 database ''' |
| 35 | '''(use unix-dot locking mechanism instead). ''' |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 36 | '''This option may be necessary if home directory is hosted on NFS.''') |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 37 | opt.add_option('--with-pch', action='store_true', default=False, dest='with_pch', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 38 | help='''Try to use precompiled header to speed up compilation ''' |
| 39 | '''(only gcc and clang)''') |
| 40 | opt.add_option('--without-osx-keychain', action='store_false', default=True, |
| 41 | dest='with_osx_keychain', |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 42 | help='''On Darwin, do not use OSX keychain as a default TPM''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 43 | |
| 44 | def configure(conf): |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 45 | conf.load("compiler_cxx boost gnu_dirs c_osx openssl cryptopp") |
| 46 | try: conf.load("doxygen") |
| 47 | except: pass |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 48 | |
| 49 | if conf.options.with_tests: |
| 50 | conf.env['WITH_TESTS'] = True |
| 51 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 52 | if conf.options.with_tools: |
| 53 | conf.env['WITH_TOOLS'] = True |
| 54 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 55 | conf.check_openssl() |
| 56 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 57 | conf.load('default-compiler-flags') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 58 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 59 | if Utils.unversioned_sys_platform() == "darwin": |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 60 | try: |
| 61 | codeFragment=''' |
| 62 | #include <CoreFoundation/CoreFoundation.h> |
| 63 | #include <Security/Security.h> |
| 64 | #include <Security/SecRandom.h> |
| 65 | #include <CoreServices/CoreServices.h> |
| 66 | #include <Security/SecDigestTransform.h> |
| 67 | |
| 68 | int main(int argc, char **argv) { |
| 69 | (void)argc; (void)argv; |
| 70 | return 0; |
| 71 | } |
| 72 | ''' |
| 73 | conf.check_cxx(framework_name='CoreFoundation', uselib_store='OSX_COREFOUNDATION', |
| 74 | mandatory=True) |
| 75 | conf.check_cxx(framework_name='CoreServices', uselib_store='OSX_CORESERVICES', |
| 76 | mandatory=True) |
| 77 | conf.check_cxx(framework_name='Security', uselib_store='OSX_SECURITY', |
| 78 | define_name='HAVE_SECURITY', use="OSX_COREFOUNDATION", |
| 79 | fragment=codeFragment, mandatory=True) |
| 80 | conf.define('HAVE_OSX_SECURITY', 1) |
| 81 | conf.env['HAVE_OSX_SECURITY'] = True |
| 82 | except: |
| 83 | Logs.warn("Compiling on OSX, but CoreFoundation, CoreServices, or Security framework is not functional.") |
| 84 | Logs.warn("The frameworks are known to work only with Apple-specific compilers: llvm-gcc-4.2 or clang") |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 85 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 86 | conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', |
| 87 | mandatory=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 88 | |
| 89 | if conf.options.log4cxx: |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 90 | conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', |
| 91 | mandatory=True) |
| 92 | conf.define("HAVE_LOG4CXX", 1) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 93 | |
| 94 | conf.check_cryptopp(path=conf.options.cryptopp_dir, mandatory=True) |
| 95 | |
| 96 | if conf.options.use_cxx11: |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 97 | conf.check(msg='Checking for type std::shared_ptr', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 98 | type_name="std::shared_ptr<int>", header_name="memory", |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 99 | define_name='HAVE_STD_SHARED_PTR', mandatory=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 100 | conf.check(msg='Checking for type std::function', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 101 | type_name="std::function<void()>", header_name="functional", |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 102 | define_name='HAVE_STD_FUNCTION', mandatory=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 103 | conf.define('HAVE_CXX11', 1) |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 104 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 105 | USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams', |
| 106 | 'regex', 'program_options', 'chrono'] |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 107 | if conf.env['WITH_TESTS']: |
| 108 | USED_BOOST_LIBS += ['unit_test_framework'] |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 109 | |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 110 | conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True) |
| 111 | if conf.env.BOOST_VERSION_NUMBER < 104800: |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 112 | Logs.error("Minimum required boost version is 1.48.0") |
| 113 | Logs.error("Please upgrade your distribution or install custom boost libraries" + |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 114 | " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
| 115 | return |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 116 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 117 | conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', |
| 118 | mandatory=False) |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 119 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 120 | conf.check_cxx(cxxflags=['-fPIC'], uselib_store='cxxstlib', mandatory=False) |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 121 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 122 | if not conf.options.with_sqlite_locking: |
| 123 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 124 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 125 | conf.env['WITH_PCH'] = conf.options.with_pch |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 126 | |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 127 | if conf.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 128 | conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain |
| 129 | if conf.options.with_osx_keychain: |
| 130 | conf.define('WITH_OSX_KEYCHAIN', 1) |
| 131 | else: |
| 132 | conf.env['WITH_OSX_KEYCHAIN'] = False |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 133 | |
| 134 | conf.load("coverage") |
| 135 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 136 | conf.define('SYSCONFDIR', conf.env['SYSCONFDIR']) |
| 137 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 138 | conf.write_config_header('src/ndn-cpp-config.h', define_prefix='NDN_CPP_') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 139 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 140 | def build(bld): |
| 141 | libndn_cpp = bld( |
Alexander Afanasyev | 59efe10 | 2014-01-29 15:56:30 -0800 | [diff] [blame] | 142 | features=['cxx', 'cxxstlib'], # 'cxxshlib', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 143 | # vnum="0.3.0", |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 144 | target="ndn-cpp-dev", |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 145 | name="ndn-cpp-dev", |
| 146 | source=bld.path.ant_glob('src/**/*.cpp', |
| 147 | excl=['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']), |
| 148 | use='BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD', |
| 149 | includes=". src", |
| 150 | export_includes="src", |
| 151 | install_path='${LIBDIR}', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 152 | ) |
| 153 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 154 | if bld.env['WITH_PCH']: |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 155 | libndn_cpp.pch="src/common.hpp" |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 156 | |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 157 | if bld.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 158 | libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 159 | libndn_cpp.mac_app = True |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 160 | libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY" |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 161 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 162 | # In case we want to make it optional later |
| 163 | libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp') |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 164 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 165 | # Prepare flags that should go to pkgconfig file |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 166 | pkgconfig_libs = [] |
| 167 | pkgconfig_ldflags = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 168 | pkgconfig_linkflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 169 | pkgconfig_includes = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 170 | pkgconfig_cxxflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 171 | for lib in Utils.to_list(libndn_cpp.use): |
| 172 | if bld.env['LIB_%s' % lib]: |
| 173 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 174 | if bld.env['LIBPATH_%s' % lib]: |
| 175 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 176 | if bld.env['INCLUDES_%s' % lib]: |
| 177 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 178 | if bld.env['LINKFLAGS_%s' % lib]: |
| 179 | pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib]) |
| 180 | if bld.env['CXXFLAGS_%s' % lib]: |
| 181 | pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib]) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 182 | |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 183 | EXTRA_FRAMEWORKS = ""; |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 184 | if bld.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 185 | EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security" |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 186 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 187 | def uniq(alist): |
| 188 | set = {} |
| 189 | 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] | 190 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 191 | pkconfig = bld(features="subst", |
| 192 | source="libndn-cpp-dev.pc.in", |
| 193 | target="libndn-cpp-dev.pc", |
| 194 | install_path="${LIBDIR}/pkgconfig", |
| 195 | VERSION=VERSION, |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 196 | |
| 197 | # This probably not the right thing to do, but to simplify life of apps |
| 198 | # that use the library |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 199 | EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 200 | EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 201 | EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)), |
| 202 | EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
| 203 | EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)), |
| 204 | EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS, |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 205 | ) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 206 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 207 | # Unit tests |
| 208 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 209 | bld.recurse('tests') |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 210 | bld.recurse('tests-integrated') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 211 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 212 | if bld.env['WITH_TOOLS']: |
| 213 | bld.recurse("tools examples") |
| 214 | else: |
| 215 | bld.recurse("examples") |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 216 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 217 | headers = bld.path.ant_glob(['src/**/*.hpp']) |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 218 | bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], headers, |
| 219 | relative_trick=True, cwd=bld.path.find_node('src')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 220 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 221 | bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], |
| 222 | bld.path.find_resource('src/ndn-cpp-config.h')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 223 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 224 | bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample") |
| 225 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 226 | def doxygen(bld): |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 227 | if not bld.env.DOXYGEN: |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 228 | bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 229 | bld(features="doxygen", |
| 230 | doxyfile='docs/doxygen.conf') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 231 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 232 | def sphinx(bld): |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 233 | bld.load('sphinx_build', tooldir=['waf-tools']) |
| 234 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 235 | bld(features="sphinx", |
| 236 | outdir="doc/html", |
| 237 | source="doc/source/conf.py") |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 238 | |
| 239 | |
| 240 | @TaskGen.feature('cxx') |
| 241 | @TaskGen.before('process_source') |
| 242 | def process_pch(self): |
| 243 | if getattr(self, 'pch', ''): |
| 244 | # for now support only gcc-compatible things |
| 245 | if self.env['COMPILER_CXX'] == 'g++': |
| 246 | nodes = self.to_nodes(self.pch, path=self.path) |
| 247 | for x in nodes: |
| 248 | z = self.create_task('gchx', x, x.change_ext('.hpp.gch')) |
| 249 | z.orig_self = self |
| 250 | |
| 251 | class gchx(Task.Task): |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 252 | run_str = '${CXX} -x c++-header ${CXXFLAGS} ${FRAMEWORKPATH_ST:FRAMEWORKPATH} ' + \ |
| 253 | '${CPPPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ' + \ |
| 254 | '${CXX_SRC_F}${SRC} ${CXX_TGT_F}${TGT}' |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 255 | scan = c_preproc.scan |
| 256 | ext_out = ['.hpp'] |
| 257 | color = 'BLUE' |
| 258 | |
| 259 | def post_run(self): |
| 260 | super(gchx, self).post_run() |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 261 | self.orig_self.env['CXXFLAGS'] = ['-include', self.inputs[0].relpath()] + \ |
| 262 | self.env['CXXFLAGS'] |