blob: 390b54bf55792841f73cca4018fd99e1bb3d86ea [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07002#
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 Afanasyeva1ae0a12014-01-28 15:21:02 -08006
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07007VERSION = '0.4.0'
8APPNAME = "ndn-cpp-dev"
9PACKAGE_BUGREPORT = "http://redmine.named-data.net/projects/ndn-cpp-dev"
10PACKAGE_URL = "https://github.com/named-data/ndn-cpp-dev"
11
12from waflib import Logs, Utils, Task, TaskGen
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080013from waflib.Tools import c_preproc
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080014
15def options(opt):
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070016 opt.load('compiler_cxx gnu_dirs c_osx')
17 opt.load('boost doxygen openssl cryptopp coverage default-compiler-flags',
18 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080019
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070020 opt = opt.add_option_group('Library Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080021
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070022 opt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080023 help='''build unit tests''')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070024 opt.add_option('--with-log4cxx', action='store_true', default=False, dest='log4cxx',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080025 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 Yue6bfab22014-02-06 16:01:19 -080029 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
30 help='''Do not build tools''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080031
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070032 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 Afanasyevf5df8e62014-02-16 19:56:21 -080036 '''This option may be necessary if home directory is hosted on NFS.''')
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080037 opt.add_option('--with-pch', action='store_true', default=False, dest='with_pch',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070038 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 Afanasyev3e08d5d2014-02-12 19:24:28 -080042 help='''On Darwin, do not use OSX keychain as a default TPM''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080043
44def configure(conf):
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070045 conf.load("compiler_cxx boost gnu_dirs c_osx openssl cryptopp")
46 try: conf.load("doxygen")
47 except: pass
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080048
49 if conf.options.with_tests:
50 conf.env['WITH_TESTS'] = True
51
Yingdi Yue6bfab22014-02-06 16:01:19 -080052 if conf.options.with_tools:
53 conf.env['WITH_TOOLS'] = True
54
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080055 conf.check_openssl()
56
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070057 conf.load('default-compiler-flags')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080058
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070059 if Utils.unversioned_sys_platform() == "darwin":
60 conf.check_cxx(framework_name='CoreFoundation', uselib_store='OSX_COREFOUNDATION',
61 mandatory=True)
62 conf.check_cxx(framework_name='CoreServices', uselib_store='OSX_CORESERVICES',
63 mandatory=True)
64 conf.check_cxx(framework_name='Security', uselib_store='OSX_SECURITY',
65 define_name='HAVE_SECURITY', use="OSX_COREFOUNDATION", mandatory=True)
Alexander Afanasyevd409d592014-01-28 18:36:38 -080066 conf.define('HAVE_OSX_SECURITY', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080067
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070068 conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3',
69 mandatory=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080070
71 if conf.options.log4cxx:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070072 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX',
73 mandatory=True)
74 conf.define("HAVE_LOG4CXX", 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080075
76 conf.check_cryptopp(path=conf.options.cryptopp_dir, mandatory=True)
77
78 if conf.options.use_cxx11:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070079 conf.add_supported_cxxflags(cxxflags=['-std=c++11', '-std=c++0x'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080080
81 conf.check(msg='Checking for type std::shared_ptr',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070082 type_name="std::shared_ptr<int>", header_name="memory",
83 define_name='HAVE_STD_SHARED_PTR')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080084 conf.check(msg='Checking for type std::function',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070085 type_name="std::function<void()>", header_name="functional",
86 define_name='HAVE_STD_FUNCTION')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080087 conf.define('HAVE_CXX11', 1)
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -070088
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070089 USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams',
90 'regex', 'program_options', 'chrono']
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000091 if conf.env['WITH_TESTS']:
92 USED_BOOST_LIBS += ['unit_test_framework']
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080093
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000094 conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True)
95 if conf.env.BOOST_VERSION_NUMBER < 104800:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070096 Logs.error("Minimum required boost version is 1.48.0")
97 Logs.error("Please upgrade your distribution or install custom boost libraries" +
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000098 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
99 return
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800100
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700101 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD',
102 mandatory=False)
Alexander Afanasyev19508852014-01-29 01:01:51 -0800103 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800104 conf.check_cxx(cxxflags=['-fPIC'], uselib_store='cxxstlib', mandatory=False)
Alexander Afanasyev19508852014-01-29 01:01:51 -0800105
Alexander Afanasyev5b60f702014-02-07 12:55:24 -0800106 if not conf.options.with_sqlite_locking:
107 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800108
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800109 conf.env['WITH_PCH'] = conf.options.with_pch
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -0800110
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700111 if Utils.unversioned_sys_platform() == "darwin":
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -0800112 conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain
113 if conf.options.with_osx_keychain:
114 conf.define('WITH_OSX_KEYCHAIN', 1)
115 else:
116 conf.env['WITH_OSX_KEYCHAIN'] = False
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800117
118 conf.load("coverage")
119
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600120 conf.define('SYSCONFDIR', conf.env['SYSCONFDIR'])
121
Alexander Afanasyev09c613f2014-01-29 00:23:58 -0800122 conf.write_config_header('src/ndn-cpp-config.h', define_prefix='NDN_CPP_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800123
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700124def build(bld):
125 libndn_cpp = bld(
Alexander Afanasyev59efe102014-01-29 15:56:30 -0800126 features=['cxx', 'cxxstlib'], # 'cxxshlib',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700127 # vnum="0.3.0",
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800128 target="ndn-cpp-dev",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700129 name="ndn-cpp-dev",
130 source=bld.path.ant_glob('src/**/*.cpp',
131 excl=['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']),
132 use='BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD',
133 includes=". src",
134 export_includes="src",
135 install_path='${LIBDIR}',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800136 )
137
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800138 if bld.env['WITH_PCH']:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700139 libndn_cpp.pch="src/common.hpp"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800140
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700141 if Utils.unversioned_sys_platform() == "darwin":
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800142 libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800143 libndn_cpp.mac_app = True
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800144 libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800145
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800146 # In case we want to make it optional later
147 libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp')
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800148
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700149 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800150 pkgconfig_libs = []
151 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800152 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800153 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800154 pkgconfig_cxxflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800155 for lib in Utils.to_list(libndn_cpp.use):
156 if bld.env['LIB_%s' % lib]:
157 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
158 if bld.env['LIBPATH_%s' % lib]:
159 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
160 if bld.env['INCLUDES_%s' % lib]:
161 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800162 if bld.env['LINKFLAGS_%s' % lib]:
163 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
164 if bld.env['CXXFLAGS_%s' % lib]:
165 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800166
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800167 EXTRA_FRAMEWORKS = "";
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700168 if Utils.unversioned_sys_platform() == "darwin":
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800169 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800170
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800171 def uniq(alist):
172 set = {}
173 return [set.setdefault(e,e) for e in alist if e not in set]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800174
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700175 pkconfig = bld(features="subst",
176 source="libndn-cpp-dev.pc.in",
177 target="libndn-cpp-dev.pc",
178 install_path="${LIBDIR}/pkgconfig",
179 VERSION=VERSION,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800180
181 # This probably not the right thing to do, but to simplify life of apps
182 # that use the library
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700183 EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
184 EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
185 EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)),
186 EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
187 EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)),
188 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS,
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800189 )
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800190
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800191 # Unit tests
192 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800193 bld.recurse('tests')
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700194 bld.recurse('tests-integrated')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800195
Yingdi Yue6bfab22014-02-06 16:01:19 -0800196 if bld.env['WITH_TOOLS']:
197 bld.recurse("tools examples")
198 else:
199 bld.recurse("examples")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800200
Alexander Afanasyev19508852014-01-29 01:01:51 -0800201 headers = bld.path.ant_glob(['src/**/*.hpp'])
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700202 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], headers,
203 relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800204
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700205 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'],
206 bld.path.find_resource('src/ndn-cpp-config.h'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800207
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600208 bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample")
209
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000210def doxygen(bld):
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800211 if not bld.env.DOXYGEN:
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000212 bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
213 bld(features="doxygen",
214 doxyfile='docs/doxygen.conf')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800215
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700216def sphinx(bld):
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800217 bld.load('sphinx_build', tooldir=['waf-tools'])
218
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700219 bld(features="sphinx",
220 outdir="doc/html",
221 source="doc/source/conf.py")
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800222
223
224@TaskGen.feature('cxx')
225@TaskGen.before('process_source')
226def process_pch(self):
227 if getattr(self, 'pch', ''):
228 # for now support only gcc-compatible things
229 if self.env['COMPILER_CXX'] == 'g++':
230 nodes = self.to_nodes(self.pch, path=self.path)
231 for x in nodes:
232 z = self.create_task('gchx', x, x.change_ext('.hpp.gch'))
233 z.orig_self = self
234
235class gchx(Task.Task):
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700236 run_str = '${CXX} -x c++-header ${CXXFLAGS} ${FRAMEWORKPATH_ST:FRAMEWORKPATH} ' + \
237 '${CPPPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ' + \
238 '${CXX_SRC_F}${SRC} ${CXX_TGT_F}${TGT}'
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800239 scan = c_preproc.scan
240 ext_out = ['.hpp']
241 color = 'BLUE'
242
243 def post_run(self):
244 super(gchx, self).post_run()
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700245 self.orig_self.env['CXXFLAGS'] = ['-include', self.inputs[0].relpath()] + \
246 self.env['CXXFLAGS']