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; -*- |
| 2 | VERSION='0.3~dev0' |
| 3 | NAME="ndn-cpp-dev" |
| 4 | |
| 5 | from waflib import Build, Logs, Utils, Task, TaskGen, Configure |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 6 | from waflib.Tools import c_preproc |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 7 | |
| 8 | def options(opt): |
| 9 | opt.load('compiler_c compiler_cxx gnu_dirs c_osx') |
| 10 | opt.load('boost doxygen openssl cryptopp', tooldir=['.waf-tools']) |
| 11 | |
| 12 | opt = opt.add_option_group('NDN-CPP Options') |
| 13 | |
| 14 | opt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''') |
| 15 | |
| 16 | opt.add_option('--with-tests', action='store_true',default=False,dest='with_tests', |
| 17 | help='''build unit tests''') |
| 18 | opt.add_option('--with-log4cxx', action='store_true',default=False,dest='log4cxx', |
| 19 | help='''Compile with log4cxx logging support''') |
| 20 | |
| 21 | opt.add_option('--with-c++11', action='store_true', default=False, dest='use_cxx11', |
| 22 | help='''Use C++11 features, even if available in the compiler''') |
| 23 | opt.add_option('--without-system-boost', action='store_false', default=True, dest='use_system_boost', |
| 24 | help='''Use system's boost libraries''') |
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 | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 28 | opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking', |
| 29 | help='''Disable filesystem locking in sqlite3 database (use unix-dot locking mechanism instead). ''' |
| 30 | '''This option may be necessary if home directory is hosted on NFS.''') |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 31 | opt.add_option('--with-pch', action='store_true', default=False, dest='with_pch', |
| 32 | help='''Try to use precompiled header to speed up compilation (only gcc and clang)''') |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 33 | opt.add_option('--without-osx-keychain', action='store_false', default=True, dest='with_osx_keychain', |
| 34 | help='''On Darwin, do not use OSX keychain as a default TPM''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 35 | |
| 36 | def configure(conf): |
| 37 | conf.load("compiler_c compiler_cxx boost gnu_dirs c_osx openssl cryptopp") |
| 38 | try: |
| 39 | conf.load("doxygen") |
| 40 | except: |
| 41 | pass |
| 42 | |
| 43 | if conf.options.with_tests: |
| 44 | conf.env['WITH_TESTS'] = True |
| 45 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 46 | if conf.options.with_tools: |
| 47 | conf.env['WITH_TOOLS'] = True |
| 48 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 49 | conf.check_openssl() |
| 50 | |
| 51 | if conf.options.debug: |
| 52 | conf.define ('_DEBUG', 1) |
| 53 | flags = ['-O0', |
| 54 | '-Wall', |
| 55 | # '-Werror', |
| 56 | '-Wno-unused-variable', |
| 57 | '-g3', |
| 58 | '-Wno-unused-private-field', # only clang supports |
| 59 | '-fcolor-diagnostics', # only clang supports |
| 60 | '-Qunused-arguments', # only clang supports |
| 61 | '-Wno-tautological-compare', # suppress warnings from CryptoPP |
| 62 | '-Wno-unused-function', # another annoying warning from CryptoPP |
| 63 | |
| 64 | '-Wno-deprecated-declarations', |
| 65 | ] |
| 66 | |
| 67 | conf.add_supported_cxxflags (cxxflags = flags) |
| 68 | else: |
| 69 | flags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function', '-Wno-deprecated-declarations'] |
| 70 | conf.add_supported_cxxflags (cxxflags = flags) |
| 71 | |
| 72 | if Utils.unversioned_sys_platform () == "darwin": |
| 73 | conf.check_cxx(framework_name='CoreFoundation', uselib_store='OSX_COREFOUNDATION', mandatory=True) |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 74 | conf.check_cxx(framework_name='CoreServices', uselib_store='OSX_CORESERVICES', mandatory=True) |
| 75 | conf.check_cxx(framework_name='Security', uselib_store='OSX_SECURITY', define_name='HAVE_SECURITY', |
| 76 | use="OSX_COREFOUNDATION", mandatory=True) |
| 77 | conf.define('HAVE_OSX_SECURITY', 1) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 78 | |
| 79 | conf.define ("PACKAGE_BUGREPORT", "ndn-lib@lists.cs.ucla.edu") |
| 80 | conf.define ("PACKAGE_NAME", NAME) |
| 81 | conf.define ("PACKAGE_VERSION", VERSION) |
| 82 | conf.define ("PACKAGE_URL", "https://github.com/named-data/ndn-cpp") |
| 83 | |
| 84 | conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', mandatory=True) |
| 85 | |
| 86 | if conf.options.log4cxx: |
| 87 | conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True) |
| 88 | conf.define ("HAVE_LOG4CXX", 1) |
| 89 | |
| 90 | conf.check_cryptopp(path=conf.options.cryptopp_dir, mandatory=True) |
| 91 | |
| 92 | if conf.options.use_cxx11: |
| 93 | conf.add_supported_cxxflags(cxxflags = ['-std=c++11', '-std=c++0x']) |
| 94 | |
| 95 | conf.check(msg='Checking for type std::shared_ptr', |
| 96 | type_name="std::shared_ptr<int>", header_name="memory", define_name='HAVE_STD_SHARED_PTR') |
| 97 | conf.check(msg='Checking for type std::function', |
| 98 | type_name="std::function<void()>", header_name="functional", define_name='HAVE_STD_FUNCTION') |
| 99 | conf.define('HAVE_CXX11', 1) |
| 100 | else: |
| 101 | if conf.options.use_system_boost: |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 102 | USED_BOOST_LIBS = 'system filesystem date_time iostreams regex program_options' |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 103 | if conf.env['WITH_TESTS']: |
| 104 | USED_BOOST_LIBS += " unit_test_framework" |
| 105 | |
| 106 | conf.check_boost(lib=USED_BOOST_LIBS) |
| 107 | |
| 108 | boost_version = conf.env.BOOST_VERSION.split('_') |
| 109 | if int(boost_version[0]) > 1 or (int(boost_version[0]) == 1 and int(boost_version[1]) >= 46): |
| 110 | conf.env['USE_SYSTEM_BOOST'] = True |
| 111 | conf.define('USE_SYSTEM_BOOST', 1) |
| 112 | |
Alexander Afanasyev | c6d795f | 2014-01-29 15:13:59 -0800 | [diff] [blame] | 113 | conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False) |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 114 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
Alexander Afanasyev | 88c6945 | 2014-02-11 18:13:41 -0800 | [diff] [blame] | 115 | conf.check_cxx(cxxflags=['-fPIC'], uselib_store='PIC', mandatory=False) |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 116 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 117 | if not conf.options.with_sqlite_locking: |
| 118 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
| 119 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 120 | conf.env['WITH_PCH'] = conf.options.with_pch |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 121 | |
| 122 | if Utils.unversioned_sys_platform () == "darwin": |
| 123 | conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain |
| 124 | if conf.options.with_osx_keychain: |
| 125 | conf.define('WITH_OSX_KEYCHAIN', 1) |
| 126 | else: |
| 127 | conf.env['WITH_OSX_KEYCHAIN'] = False |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 128 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 129 | 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] | 130 | |
| 131 | def build (bld): |
| 132 | libndn_cpp = bld ( |
Alexander Afanasyev | 59efe10 | 2014-01-29 15:56:30 -0800 | [diff] [blame] | 133 | features=['cxx', 'cxxstlib'], # 'cxxshlib', |
| 134 | # vnum = "0.3.0", |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 135 | target="ndn-cpp-dev", |
| 136 | name = "ndn-cpp-dev", |
| 137 | source = bld.path.ant_glob('src/**/*.cpp', |
| 138 | excl = ['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']), |
Alexander Afanasyev | 88c6945 | 2014-02-11 18:13:41 -0800 | [diff] [blame] | 139 | use = 'BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD', |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 140 | includes = ". src", |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 141 | export_includes = "src", |
Alexander Afanasyev | c6d795f | 2014-01-29 15:13:59 -0800 | [diff] [blame] | 142 | install_path = '${LIBDIR}', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 143 | ) |
| 144 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 145 | if bld.env['WITH_PCH']: |
| 146 | libndn_cpp.pch = "src/common.hpp" |
| 147 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 148 | if Utils.unversioned_sys_platform () == "darwin": |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 149 | libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 150 | libndn_cpp.mac_app = True |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 151 | libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY" |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 152 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 153 | # In case we want to make it optional later |
| 154 | libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp') |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 155 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 156 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 157 | pkgconfig_libs = [] |
| 158 | pkgconfig_ldflags = [] |
| 159 | pkgconfig_includes = [] |
| 160 | for lib in Utils.to_list(libndn_cpp.use): |
| 161 | if bld.env['LIB_%s' % lib]: |
| 162 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 163 | if bld.env['LIBPATH_%s' % lib]: |
| 164 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 165 | if bld.env['INCLUDES_%s' % lib]: |
| 166 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
| 167 | |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 168 | EXTRA_FRAMEWORKS = ""; |
| 169 | if Utils.unversioned_sys_platform () == "darwin": |
| 170 | EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security" |
| 171 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 172 | def uniq(alist): |
| 173 | set = {} |
| 174 | return [set.setdefault(e,e) for e in alist if e not in set] |
| 175 | |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 176 | bld (features = "subst", |
| 177 | source = "libndn-cpp-dev.pc.in", |
| 178 | target = "libndn-cpp-dev.pc", |
| 179 | install_path = "${LIBDIR}/pkgconfig", |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 180 | VERSION = VERSION, |
| 181 | |
| 182 | # This probably not the right thing to do, but to simplify life of apps |
| 183 | # that use the library |
| 184 | EXTRA_LIBS = " ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 185 | EXTRA_LDFLAGS = " ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 186 | EXTRA_INCLUDES = " ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 187 | EXTRA_FRAMEWORKS = EXTRA_FRAMEWORKS, |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 188 | ) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 189 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 190 | # Unit tests |
| 191 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 192 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 193 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 194 | if bld.env['WITH_TOOLS']: |
| 195 | bld.recurse("tools examples") |
| 196 | else: |
| 197 | bld.recurse("examples") |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 198 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 199 | headers = bld.path.ant_glob(['src/**/*.hpp']) |
| 200 | bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], headers, relative_trick=True, cwd=bld.path.find_node('src')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 201 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 202 | bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], bld.path.find_resource('src/ndn-cpp-config.h')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 203 | |
| 204 | @Configure.conf |
| 205 | def add_supported_cxxflags(self, cxxflags): |
| 206 | """ |
| 207 | Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable |
| 208 | """ |
| 209 | self.start_msg('Checking allowed flags for c++ compiler') |
| 210 | |
| 211 | supportedFlags = [] |
| 212 | for flag in cxxflags: |
| 213 | if self.check_cxx (cxxflags=[flag], mandatory=False): |
| 214 | supportedFlags += [flag] |
| 215 | |
| 216 | self.end_msg (' '.join (supportedFlags)) |
| 217 | self.env.CXXFLAGS += supportedFlags |
| 218 | |
| 219 | # doxygen docs |
| 220 | from waflib.Build import BuildContext |
| 221 | class doxy (BuildContext): |
| 222 | cmd = "doxygen" |
| 223 | fun = "doxygen" |
| 224 | |
| 225 | def doxygen (bld): |
| 226 | if not bld.env.DOXYGEN: |
| 227 | bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 228 | bld (features="doxygen", |
| 229 | doxyfile='Doxyfile') |
| 230 | |
| 231 | # doxygen docs |
| 232 | from waflib.Build import BuildContext |
| 233 | class sphinx (BuildContext): |
| 234 | cmd = "sphinx" |
| 235 | fun = "sphinx" |
| 236 | |
| 237 | def sphinx (bld): |
| 238 | bld.load('sphinx_build', tooldir=['waf-tools']) |
| 239 | |
| 240 | bld (features="sphinx", |
| 241 | outdir = "doc/html", |
| 242 | source = "doc/source/conf.py") |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 243 | |
| 244 | |
| 245 | @TaskGen.feature('cxx') |
| 246 | @TaskGen.before('process_source') |
| 247 | def process_pch(self): |
| 248 | if getattr(self, 'pch', ''): |
| 249 | # for now support only gcc-compatible things |
| 250 | if self.env['COMPILER_CXX'] == 'g++': |
| 251 | nodes = self.to_nodes(self.pch, path=self.path) |
| 252 | for x in nodes: |
| 253 | z = self.create_task('gchx', x, x.change_ext('.hpp.gch')) |
| 254 | z.orig_self = self |
| 255 | |
| 256 | class gchx(Task.Task): |
| 257 | run_str = '${CXX} -x c++-header ${CXXFLAGS} ${FRAMEWORKPATH_ST:FRAMEWORKPATH} ${CPPPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ${CXX_SRC_F}${SRC} ${CXX_TGT_F}${TGT}' |
| 258 | scan = c_preproc.scan |
| 259 | ext_out = ['.hpp'] |
| 260 | color = 'BLUE' |
| 261 | |
| 262 | def post_run(self): |
| 263 | super(gchx, self).post_run() |
| 264 | self.orig_self.env['CXXFLAGS'] = ['-include', self.inputs[0].relpath()] + self.env['CXXFLAGS'] |
| 265 | |