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 |
| 6 | |
| 7 | def 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''') |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 24 | opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools', |
| 25 | help='''Do not build tools''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 26 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame^] | 27 | opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking', |
| 28 | help='''Disable filesystem locking in sqlite3 database (use unix-dot locking mechanism instead). ''' |
| 29 | '''This option may be necessary if home directory is hosted on NFS.''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 30 | |
| 31 | def configure(conf): |
| 32 | conf.load("compiler_c compiler_cxx boost gnu_dirs c_osx openssl cryptopp") |
| 33 | try: |
| 34 | conf.load("doxygen") |
| 35 | except: |
| 36 | pass |
| 37 | |
| 38 | if conf.options.with_tests: |
| 39 | conf.env['WITH_TESTS'] = True |
| 40 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 41 | if conf.options.with_tools: |
| 42 | conf.env['WITH_TOOLS'] = True |
| 43 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 44 | conf.check_openssl() |
| 45 | |
| 46 | if conf.options.debug: |
| 47 | conf.define ('_DEBUG', 1) |
| 48 | flags = ['-O0', |
| 49 | '-Wall', |
| 50 | # '-Werror', |
| 51 | '-Wno-unused-variable', |
| 52 | '-g3', |
| 53 | '-Wno-unused-private-field', # only clang supports |
| 54 | '-fcolor-diagnostics', # only clang supports |
| 55 | '-Qunused-arguments', # only clang supports |
| 56 | '-Wno-tautological-compare', # suppress warnings from CryptoPP |
| 57 | '-Wno-unused-function', # another annoying warning from CryptoPP |
| 58 | |
| 59 | '-Wno-deprecated-declarations', |
| 60 | ] |
| 61 | |
| 62 | conf.add_supported_cxxflags (cxxflags = flags) |
| 63 | else: |
| 64 | flags = ['-O3', '-g', '-Wno-tautological-compare', '-Wno-unused-function', '-Wno-deprecated-declarations'] |
| 65 | conf.add_supported_cxxflags (cxxflags = flags) |
| 66 | |
| 67 | if Utils.unversioned_sys_platform () == "darwin": |
| 68 | conf.check_cxx(framework_name='CoreFoundation', uselib_store='OSX_COREFOUNDATION', mandatory=True) |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 69 | conf.check_cxx(framework_name='CoreServices', uselib_store='OSX_CORESERVICES', mandatory=True) |
| 70 | conf.check_cxx(framework_name='Security', uselib_store='OSX_SECURITY', define_name='HAVE_SECURITY', |
| 71 | use="OSX_COREFOUNDATION", mandatory=True) |
| 72 | conf.define('HAVE_OSX_SECURITY', 1) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 73 | |
| 74 | conf.define ("PACKAGE_BUGREPORT", "ndn-lib@lists.cs.ucla.edu") |
| 75 | conf.define ("PACKAGE_NAME", NAME) |
| 76 | conf.define ("PACKAGE_VERSION", VERSION) |
| 77 | conf.define ("PACKAGE_URL", "https://github.com/named-data/ndn-cpp") |
| 78 | |
| 79 | conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', mandatory=True) |
| 80 | |
| 81 | if conf.options.log4cxx: |
| 82 | conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True) |
| 83 | conf.define ("HAVE_LOG4CXX", 1) |
| 84 | |
| 85 | conf.check_cryptopp(path=conf.options.cryptopp_dir, mandatory=True) |
| 86 | |
| 87 | if conf.options.use_cxx11: |
| 88 | conf.add_supported_cxxflags(cxxflags = ['-std=c++11', '-std=c++0x']) |
| 89 | |
| 90 | conf.check(msg='Checking for type std::shared_ptr', |
| 91 | type_name="std::shared_ptr<int>", header_name="memory", define_name='HAVE_STD_SHARED_PTR') |
| 92 | conf.check(msg='Checking for type std::function', |
| 93 | type_name="std::function<void()>", header_name="functional", define_name='HAVE_STD_FUNCTION') |
| 94 | conf.define('HAVE_CXX11', 1) |
| 95 | else: |
| 96 | if conf.options.use_system_boost: |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 97 | USED_BOOST_LIBS = 'system filesystem date_time iostreams regex program_options' |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 98 | if conf.env['WITH_TESTS']: |
| 99 | USED_BOOST_LIBS += " unit_test_framework" |
| 100 | |
| 101 | conf.check_boost(lib=USED_BOOST_LIBS) |
| 102 | |
| 103 | boost_version = conf.env.BOOST_VERSION.split('_') |
| 104 | if int(boost_version[0]) > 1 or (int(boost_version[0]) == 1 and int(boost_version[1]) >= 46): |
| 105 | conf.env['USE_SYSTEM_BOOST'] = True |
| 106 | conf.define('USE_SYSTEM_BOOST', 1) |
| 107 | |
Alexander Afanasyev | c6d795f | 2014-01-29 15:13:59 -0800 | [diff] [blame] | 108 | 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] | 109 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
| 110 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame^] | 111 | if not conf.options.with_sqlite_locking: |
| 112 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
| 113 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 114 | 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] | 115 | |
| 116 | def build (bld): |
| 117 | libndn_cpp = bld ( |
Alexander Afanasyev | 59efe10 | 2014-01-29 15:56:30 -0800 | [diff] [blame] | 118 | features=['cxx', 'cxxstlib'], # 'cxxshlib', |
| 119 | # vnum = "0.3.0", |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 120 | target="ndn-cpp-dev", |
| 121 | name = "ndn-cpp-dev", |
| 122 | source = bld.path.ant_glob('src/**/*.cpp', |
| 123 | excl = ['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']), |
Alexander Afanasyev | c6d795f | 2014-01-29 15:13:59 -0800 | [diff] [blame] | 124 | use = 'BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PTHREAD', |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 125 | includes = "src", |
| 126 | export_includes = "src", |
Alexander Afanasyev | c6d795f | 2014-01-29 15:13:59 -0800 | [diff] [blame] | 127 | install_path = '${LIBDIR}', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 128 | ) |
| 129 | |
| 130 | if Utils.unversioned_sys_platform () == "darwin": |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 131 | libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 132 | libndn_cpp.mac_app = True |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 133 | libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY" |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 134 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 135 | # In case we want to make it optional later |
| 136 | libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp') |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 137 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 138 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 139 | pkgconfig_libs = [] |
| 140 | pkgconfig_ldflags = [] |
| 141 | pkgconfig_includes = [] |
| 142 | for lib in Utils.to_list(libndn_cpp.use): |
| 143 | if bld.env['LIB_%s' % lib]: |
| 144 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 145 | if bld.env['LIBPATH_%s' % lib]: |
| 146 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 147 | if bld.env['INCLUDES_%s' % lib]: |
| 148 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
| 149 | |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 150 | EXTRA_FRAMEWORKS = ""; |
| 151 | if Utils.unversioned_sys_platform () == "darwin": |
| 152 | EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security" |
| 153 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 154 | def uniq(alist): |
| 155 | set = {} |
| 156 | return [set.setdefault(e,e) for e in alist if e not in set] |
| 157 | |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 158 | bld (features = "subst", |
| 159 | source = "libndn-cpp-dev.pc.in", |
| 160 | target = "libndn-cpp-dev.pc", |
| 161 | install_path = "${LIBDIR}/pkgconfig", |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 162 | VERSION = VERSION, |
| 163 | |
| 164 | # This probably not the right thing to do, but to simplify life of apps |
| 165 | # that use the library |
| 166 | EXTRA_LIBS = " ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 167 | EXTRA_LDFLAGS = " ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 168 | EXTRA_INCLUDES = " ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 169 | EXTRA_FRAMEWORKS = EXTRA_FRAMEWORKS, |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 170 | ) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 171 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 172 | # Unit tests |
| 173 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 174 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 175 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 176 | if bld.env['WITH_TOOLS']: |
| 177 | bld.recurse("tools examples") |
| 178 | else: |
| 179 | bld.recurse("examples") |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 180 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 181 | headers = bld.path.ant_glob(['src/**/*.hpp']) |
| 182 | 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] | 183 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 184 | 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] | 185 | |
| 186 | @Configure.conf |
| 187 | def add_supported_cxxflags(self, cxxflags): |
| 188 | """ |
| 189 | Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable |
| 190 | """ |
| 191 | self.start_msg('Checking allowed flags for c++ compiler') |
| 192 | |
| 193 | supportedFlags = [] |
| 194 | for flag in cxxflags: |
| 195 | if self.check_cxx (cxxflags=[flag], mandatory=False): |
| 196 | supportedFlags += [flag] |
| 197 | |
| 198 | self.end_msg (' '.join (supportedFlags)) |
| 199 | self.env.CXXFLAGS += supportedFlags |
| 200 | |
| 201 | # doxygen docs |
| 202 | from waflib.Build import BuildContext |
| 203 | class doxy (BuildContext): |
| 204 | cmd = "doxygen" |
| 205 | fun = "doxygen" |
| 206 | |
| 207 | def doxygen (bld): |
| 208 | if not bld.env.DOXYGEN: |
| 209 | bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 210 | bld (features="doxygen", |
| 211 | doxyfile='Doxyfile') |
| 212 | |
| 213 | # doxygen docs |
| 214 | from waflib.Build import BuildContext |
| 215 | class sphinx (BuildContext): |
| 216 | cmd = "sphinx" |
| 217 | fun = "sphinx" |
| 218 | |
| 219 | def sphinx (bld): |
| 220 | bld.load('sphinx_build', tooldir=['waf-tools']) |
| 221 | |
| 222 | bld (features="sphinx", |
| 223 | outdir = "doc/html", |
| 224 | source = "doc/source/conf.py") |