blob: f71a7475d039102412bcf436d18f8f2b771cf94a [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
6
7def options(opt):
8 opt.load('compiler_c compiler_cxx gnu_dirs c_osx')
9 opt.load('boost doxygen openssl cryptopp', tooldir=['.waf-tools'])
10
11 opt = opt.add_option_group('NDN-CPP Options')
12
13 opt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''')
14
15 opt.add_option('--with-tests', action='store_true',default=False,dest='with_tests',
16 help='''build unit tests''')
17 opt.add_option('--with-log4cxx', action='store_true',default=False,dest='log4cxx',
18 help='''Compile with log4cxx logging support''')
19
20 opt.add_option('--with-c++11', action='store_true', default=False, dest='use_cxx11',
21 help='''Use C++11 features, even if available in the compiler''')
22 opt.add_option('--without-system-boost', action='store_false', default=True, dest='use_system_boost',
23 help='''Use system's boost libraries''')
24
25
26def configure(conf):
27 conf.load("compiler_c compiler_cxx boost gnu_dirs c_osx openssl cryptopp")
28 try:
29 conf.load("doxygen")
30 except:
31 pass
32
33 if conf.options.with_tests:
34 conf.env['WITH_TESTS'] = True
35
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080036 conf.check_openssl()
37
38 if conf.options.debug:
39 conf.define ('_DEBUG', 1)
40 flags = ['-O0',
41 '-Wall',
42 # '-Werror',
43 '-Wno-unused-variable',
44 '-g3',
45 '-Wno-unused-private-field', # only clang supports
46 '-fcolor-diagnostics', # only clang supports
47 '-Qunused-arguments', # only clang supports
48 '-Wno-tautological-compare', # suppress warnings from CryptoPP
49 '-Wno-unused-function', # another annoying warning from CryptoPP
50
51 '-Wno-deprecated-declarations',
52 ]
53
54 conf.add_supported_cxxflags (cxxflags = flags)
55 else:
56 flags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function', '-Wno-deprecated-declarations']
57 conf.add_supported_cxxflags (cxxflags = flags)
58
59 if Utils.unversioned_sys_platform () == "darwin":
60 conf.check_cxx(framework_name='CoreFoundation', uselib_store='OSX_COREFOUNDATION', mandatory=True)
Alexander Afanasyevd409d592014-01-28 18:36:38 -080061 conf.check_cxx(framework_name='CoreServices', uselib_store='OSX_CORESERVICES', mandatory=True)
62 conf.check_cxx(framework_name='Security', uselib_store='OSX_SECURITY', define_name='HAVE_SECURITY',
63 use="OSX_COREFOUNDATION", mandatory=True)
64 conf.define('HAVE_OSX_SECURITY', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080065
66 conf.define ("PACKAGE_BUGREPORT", "ndn-lib@lists.cs.ucla.edu")
67 conf.define ("PACKAGE_NAME", NAME)
68 conf.define ("PACKAGE_VERSION", VERSION)
69 conf.define ("PACKAGE_URL", "https://github.com/named-data/ndn-cpp")
70
71 conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', mandatory=True)
72
73 if conf.options.log4cxx:
74 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True)
75 conf.define ("HAVE_LOG4CXX", 1)
76
77 conf.check_cryptopp(path=conf.options.cryptopp_dir, mandatory=True)
78
79 if conf.options.use_cxx11:
80 conf.add_supported_cxxflags(cxxflags = ['-std=c++11', '-std=c++0x'])
81
82 conf.check(msg='Checking for type std::shared_ptr',
83 type_name="std::shared_ptr<int>", header_name="memory", define_name='HAVE_STD_SHARED_PTR')
84 conf.check(msg='Checking for type std::function',
85 type_name="std::function<void()>", header_name="functional", define_name='HAVE_STD_FUNCTION')
86 conf.define('HAVE_CXX11', 1)
87 else:
88 if conf.options.use_system_boost:
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -080089 USED_BOOST_LIBS = 'system filesystem date_time iostreams'
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080090 if conf.env['WITH_TESTS']:
91 USED_BOOST_LIBS += " unit_test_framework"
92
93 conf.check_boost(lib=USED_BOOST_LIBS)
94
95 boost_version = conf.env.BOOST_VERSION.split('_')
96 if int(boost_version[0]) > 1 or (int(boost_version[0]) == 1 and int(boost_version[1]) >= 46):
97 conf.env['USE_SYSTEM_BOOST'] = True
98 conf.define('USE_SYSTEM_BOOST', 1)
99
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800100 conf.write_config_header('include/ndn-cpp-dev/ndn-cpp-config.h', define_prefix='NDN_CPP_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800101
102def build (bld):
103 libndn_cpp = bld (
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800104 features=['cxx', 'cxxshlib', 'cxxstlib'],
105 vnum = "0.3.0",
106 target="ndn-cpp-dev",
107 name = "ndn-cpp-dev",
108 source = bld.path.ant_glob('src/**/*.cpp',
109 excl = ['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']),
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800110 use = 'BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3',
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800111 includes = "include",
112 export_includes = "include",
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800113 )
114
115 if Utils.unversioned_sys_platform () == "darwin":
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800116 libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800117 libndn_cpp.mac_app = True
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800118 libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800119
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800120 # In case we want to make it optional later
121 libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp')
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800122
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800123
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800124 pkgconfig_libs = []
125 pkgconfig_ldflags = []
126 pkgconfig_includes = []
127 for lib in Utils.to_list(libndn_cpp.use):
128 if bld.env['LIB_%s' % lib]:
129 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
130 if bld.env['LIBPATH_%s' % lib]:
131 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
132 if bld.env['INCLUDES_%s' % lib]:
133 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
134
135 def uniq(alist):
136 set = {}
137 return [set.setdefault(e,e) for e in alist if e not in set]
138
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800139 bld (features = "subst",
140 source = "libndn-cpp-dev.pc.in",
141 target = "libndn-cpp-dev.pc",
142 install_path = "${LIBDIR}/pkgconfig",
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800143 VERSION = VERSION,
144
145 # This probably not the right thing to do, but to simplify life of apps
146 # that use the library
147 EXTRA_LIBS = " ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
148 EXTRA_LDFLAGS = " ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
149 EXTRA_INCLUDES = " ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800150 )
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800151
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800152 # Unit tests
153 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800154 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800155
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800156 bld.recurse("tools examples")
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800157
158 headers = bld.path.ant_glob(['src/**/*.hpp',
159 'src/**/*.h'])
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800160 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 -0800161
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800162 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], bld.path.find_resource('include/ndn-cpp-dev/ndn-cpp-config.h'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800163
164 headers = bld.path.ant_glob(['include/**/*.hpp', 'include/**/*.h'])
165 bld.install_files("%s" % bld.env['INCLUDEDIR'], headers, relative_trick=True, cwd=bld.path.find_node('include'))
166
167@Configure.conf
168def add_supported_cxxflags(self, cxxflags):
169 """
170 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
171 """
172 self.start_msg('Checking allowed flags for c++ compiler')
173
174 supportedFlags = []
175 for flag in cxxflags:
176 if self.check_cxx (cxxflags=[flag], mandatory=False):
177 supportedFlags += [flag]
178
179 self.end_msg (' '.join (supportedFlags))
180 self.env.CXXFLAGS += supportedFlags
181
182# doxygen docs
183from waflib.Build import BuildContext
184class doxy (BuildContext):
185 cmd = "doxygen"
186 fun = "doxygen"
187
188def doxygen (bld):
189 if not bld.env.DOXYGEN:
190 bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
191 bld (features="doxygen",
192 doxyfile='Doxyfile')
193
194# doxygen docs
195from waflib.Build import BuildContext
196class sphinx (BuildContext):
197 cmd = "sphinx"
198 fun = "sphinx"
199
200def sphinx (bld):
201 bld.load('sphinx_build', tooldir=['waf-tools'])
202
203 bld (features="sphinx",
204 outdir = "doc/html",
205 source = "doc/source/conf.py")