blob: 7bc8a27eaaad6c1d52272a4f7925e4d270419cc0 [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2VERSION='0.3~dev0'
3NAME="ndn-cpp-dev"
4
5from waflib import Build, Logs, Utils, Task, TaskGen, Configure
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -08006from waflib.Tools import c_preproc
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08007
8def 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 Yue6bfab22014-02-06 16:01:19 -080025 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
26 help='''Do not build tools''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080027
Alexander Afanasyev5b60f702014-02-07 12:55:24 -080028 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 Afanasyeve2dcdfd2014-02-07 15:53:28 -080031 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 Afanasyeva1ae0a12014-01-28 15:21:02 -080033
34def configure(conf):
35 conf.load("compiler_c compiler_cxx boost gnu_dirs c_osx openssl cryptopp")
36 try:
37 conf.load("doxygen")
38 except:
39 pass
40
41 if conf.options.with_tests:
42 conf.env['WITH_TESTS'] = True
43
Yingdi Yue6bfab22014-02-06 16:01:19 -080044 if conf.options.with_tools:
45 conf.env['WITH_TOOLS'] = True
46
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080047 conf.check_openssl()
48
49 if conf.options.debug:
50 conf.define ('_DEBUG', 1)
51 flags = ['-O0',
52 '-Wall',
53 # '-Werror',
54 '-Wno-unused-variable',
55 '-g3',
56 '-Wno-unused-private-field', # only clang supports
57 '-fcolor-diagnostics', # only clang supports
58 '-Qunused-arguments', # only clang supports
59 '-Wno-tautological-compare', # suppress warnings from CryptoPP
60 '-Wno-unused-function', # another annoying warning from CryptoPP
61
62 '-Wno-deprecated-declarations',
63 ]
64
65 conf.add_supported_cxxflags (cxxflags = flags)
66 else:
67 flags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function', '-Wno-deprecated-declarations']
68 conf.add_supported_cxxflags (cxxflags = flags)
69
70 if Utils.unversioned_sys_platform () == "darwin":
71 conf.check_cxx(framework_name='CoreFoundation', uselib_store='OSX_COREFOUNDATION', mandatory=True)
Alexander Afanasyevd409d592014-01-28 18:36:38 -080072 conf.check_cxx(framework_name='CoreServices', uselib_store='OSX_CORESERVICES', mandatory=True)
73 conf.check_cxx(framework_name='Security', uselib_store='OSX_SECURITY', define_name='HAVE_SECURITY',
74 use="OSX_COREFOUNDATION", mandatory=True)
75 conf.define('HAVE_OSX_SECURITY', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080076
77 conf.define ("PACKAGE_BUGREPORT", "ndn-lib@lists.cs.ucla.edu")
78 conf.define ("PACKAGE_NAME", NAME)
79 conf.define ("PACKAGE_VERSION", VERSION)
80 conf.define ("PACKAGE_URL", "https://github.com/named-data/ndn-cpp")
81
82 conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', mandatory=True)
83
84 if conf.options.log4cxx:
85 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True)
86 conf.define ("HAVE_LOG4CXX", 1)
87
88 conf.check_cryptopp(path=conf.options.cryptopp_dir, mandatory=True)
89
90 if conf.options.use_cxx11:
91 conf.add_supported_cxxflags(cxxflags = ['-std=c++11', '-std=c++0x'])
92
93 conf.check(msg='Checking for type std::shared_ptr',
94 type_name="std::shared_ptr<int>", header_name="memory", define_name='HAVE_STD_SHARED_PTR')
95 conf.check(msg='Checking for type std::function',
96 type_name="std::function<void()>", header_name="functional", define_name='HAVE_STD_FUNCTION')
97 conf.define('HAVE_CXX11', 1)
98 else:
99 if conf.options.use_system_boost:
Yingdi Yue6bfab22014-02-06 16:01:19 -0800100 USED_BOOST_LIBS = 'system filesystem date_time iostreams regex program_options'
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800101 if conf.env['WITH_TESTS']:
102 USED_BOOST_LIBS += " unit_test_framework"
103
104 conf.check_boost(lib=USED_BOOST_LIBS)
105
106 boost_version = conf.env.BOOST_VERSION.split('_')
107 if int(boost_version[0]) > 1 or (int(boost_version[0]) == 1 and int(boost_version[1]) >= 46):
108 conf.env['USE_SYSTEM_BOOST'] = True
109 conf.define('USE_SYSTEM_BOOST', 1)
110
Alexander Afanasyevc6d795f2014-01-29 15:13:59 -0800111 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
Alexander Afanasyev19508852014-01-29 01:01:51 -0800112 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
113
Alexander Afanasyev5b60f702014-02-07 12:55:24 -0800114 if not conf.options.with_sqlite_locking:
115 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
116
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800117 conf.env['WITH_PCH'] = conf.options.with_pch
118
Alexander Afanasyev09c613f2014-01-29 00:23:58 -0800119 conf.write_config_header('src/ndn-cpp-config.h', define_prefix='NDN_CPP_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800120
121def build (bld):
122 libndn_cpp = bld (
Alexander Afanasyev59efe102014-01-29 15:56:30 -0800123 features=['cxx', 'cxxstlib'], # 'cxxshlib',
124 # vnum = "0.3.0",
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800125 target="ndn-cpp-dev",
126 name = "ndn-cpp-dev",
127 source = bld.path.ant_glob('src/**/*.cpp',
128 excl = ['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']),
Alexander Afanasyevc6d795f2014-01-29 15:13:59 -0800129 use = 'BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PTHREAD',
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800130 includes = ". src",
Alexander Afanasyev09c613f2014-01-29 00:23:58 -0800131 export_includes = "src",
Alexander Afanasyevc6d795f2014-01-29 15:13:59 -0800132 install_path = '${LIBDIR}',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800133 )
134
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800135 if bld.env['WITH_PCH']:
136 libndn_cpp.pch = "src/common.hpp"
137
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800138 if Utils.unversioned_sys_platform () == "darwin":
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800139 libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800140 libndn_cpp.mac_app = True
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800141 libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800142
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800143 # In case we want to make it optional later
144 libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp')
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800145
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800146
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800147 pkgconfig_libs = []
148 pkgconfig_ldflags = []
149 pkgconfig_includes = []
150 for lib in Utils.to_list(libndn_cpp.use):
151 if bld.env['LIB_%s' % lib]:
152 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
153 if bld.env['LIBPATH_%s' % lib]:
154 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
155 if bld.env['INCLUDES_%s' % lib]:
156 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
157
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800158 EXTRA_FRAMEWORKS = "";
159 if Utils.unversioned_sys_platform () == "darwin":
160 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security"
161
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800162 def uniq(alist):
163 set = {}
164 return [set.setdefault(e,e) for e in alist if e not in set]
165
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800166 bld (features = "subst",
167 source = "libndn-cpp-dev.pc.in",
168 target = "libndn-cpp-dev.pc",
169 install_path = "${LIBDIR}/pkgconfig",
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800170 VERSION = VERSION,
171
172 # This probably not the right thing to do, but to simplify life of apps
173 # that use the library
174 EXTRA_LIBS = " ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
175 EXTRA_LDFLAGS = " ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
176 EXTRA_INCLUDES = " ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800177 EXTRA_FRAMEWORKS = EXTRA_FRAMEWORKS,
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800178 )
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800179
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800180 # Unit tests
181 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800182 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800183
Yingdi Yue6bfab22014-02-06 16:01:19 -0800184 if bld.env['WITH_TOOLS']:
185 bld.recurse("tools examples")
186 else:
187 bld.recurse("examples")
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800188
Alexander Afanasyev19508852014-01-29 01:01:51 -0800189 headers = bld.path.ant_glob(['src/**/*.hpp'])
190 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], headers, relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800191
Alexander Afanasyev19508852014-01-29 01:01:51 -0800192 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], bld.path.find_resource('src/ndn-cpp-config.h'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800193
194@Configure.conf
195def add_supported_cxxflags(self, cxxflags):
196 """
197 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
198 """
199 self.start_msg('Checking allowed flags for c++ compiler')
200
201 supportedFlags = []
202 for flag in cxxflags:
203 if self.check_cxx (cxxflags=[flag], mandatory=False):
204 supportedFlags += [flag]
205
206 self.end_msg (' '.join (supportedFlags))
207 self.env.CXXFLAGS += supportedFlags
208
209# doxygen docs
210from waflib.Build import BuildContext
211class doxy (BuildContext):
212 cmd = "doxygen"
213 fun = "doxygen"
214
215def doxygen (bld):
216 if not bld.env.DOXYGEN:
217 bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
218 bld (features="doxygen",
219 doxyfile='Doxyfile')
220
221# doxygen docs
222from waflib.Build import BuildContext
223class sphinx (BuildContext):
224 cmd = "sphinx"
225 fun = "sphinx"
226
227def sphinx (bld):
228 bld.load('sphinx_build', tooldir=['waf-tools'])
229
230 bld (features="sphinx",
231 outdir = "doc/html",
232 source = "doc/source/conf.py")
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800233
234
235@TaskGen.feature('cxx')
236@TaskGen.before('process_source')
237def process_pch(self):
238 if getattr(self, 'pch', ''):
239 # for now support only gcc-compatible things
240 if self.env['COMPILER_CXX'] == 'g++':
241 nodes = self.to_nodes(self.pch, path=self.path)
242 for x in nodes:
243 z = self.create_task('gchx', x, x.change_ext('.hpp.gch'))
244 z.orig_self = self
245
246class gchx(Task.Task):
247 run_str = '${CXX} -x c++-header ${CXXFLAGS} ${FRAMEWORKPATH_ST:FRAMEWORKPATH} ${CPPPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ${CXX_SRC_F}${SRC} ${CXX_TGT_F}${TGT}'
248 scan = c_preproc.scan
249 ext_out = ['.hpp']
250 color = 'BLUE'
251
252 def post_run(self):
253 super(gchx, self).post_run()
254 self.orig_self.env['CXXFLAGS'] = ['-include', self.inputs[0].relpath()] + self.env['CXXFLAGS']
255