blob: 142f03a045477f1ee20381965be69102ea27979b [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 Afanasyeva1ae0a12014-01-28 15:21:02 -08002
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07003VERSION = '0.4.0'
4APPNAME = "ndn-cpp-dev"
5PACKAGE_BUGREPORT = "http://redmine.named-data.net/projects/ndn-cpp-dev"
6PACKAGE_URL = "https://github.com/named-data/ndn-cpp-dev"
7
Alexander Afanasyev1160baa2014-04-10 18:50:29 -07008from waflib import Logs, Utils
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08009
10def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070011 opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
12 opt.load(['default-compiler-flags', 'coverage', 'osx-security', 'pch',
13 'boost', 'openssl', 'cryptopp', 'sqlite3',
14 'doxygen', 'sphinx_build'],
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070015 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080016
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070017 opt = opt.add_option_group('Library Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080018
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070019 opt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080020 help='''build unit tests''')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070021 opt.add_option('--with-log4cxx', action='store_true', default=False, dest='log4cxx',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080022 help='''Compile with log4cxx logging support''')
23
24 opt.add_option('--with-c++11', action='store_true', default=False, dest='use_cxx11',
25 help='''Use C++11 features, even if available in the compiler''')
Yingdi Yue6bfab22014-02-06 16:01:19 -080026 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
27 help='''Do not build tools''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080028
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070029 opt.add_option('--without-sqlite-locking', action='store_false', default=True,
30 dest='with_sqlite_locking',
31 help='''Disable filesystem locking in sqlite3 database '''
32 '''(use unix-dot locking mechanism instead). '''
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080033 '''This option may be necessary if home directory is hosted on NFS.''')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070034 opt.add_option('--without-osx-keychain', action='store_false', default=True,
35 dest='with_osx_keychain',
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080036 help='''On Darwin, do not use OSX keychain as a default TPM''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080037
38def configure(conf):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070039 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
40 'default-compiler-flags', 'osx-security', 'pch',
41 'boost', 'openssl', 'cryptopp', 'sqlite3',
42 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080043
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070044 conf.env['WITH_TESTS'] = conf.options.with_tests
45 conf.env['WITH_TOOLS'] = conf.options.with_tools
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080046
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070047 conf.check_osx_security(mandatory=False)
Yingdi Yue6bfab22014-02-06 16:01:19 -080048
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070049 conf.check_openssl(mandatory=True)
50 conf.check_sqlite3(mandatory=True)
51 conf.check_cryptopp(mandatory=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080052
53 if conf.options.log4cxx:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070054 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX',
55 mandatory=True)
56 conf.define("HAVE_LOG4CXX", 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080057
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080058 if conf.options.use_cxx11:
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080059 conf.check(msg='Checking for type std::shared_ptr',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070060 type_name="std::shared_ptr<int>", header_name="memory",
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070061 define_name='HAVE_STD_SHARED_PTR', mandatory=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080062 conf.check(msg='Checking for type std::function',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070063 type_name="std::function<void()>", header_name="functional",
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070064 define_name='HAVE_STD_FUNCTION', mandatory=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080065 conf.define('HAVE_CXX11', 1)
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -070066
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070067 USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams',
68 'regex', 'program_options', 'chrono']
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000069 if conf.env['WITH_TESTS']:
70 USED_BOOST_LIBS += ['unit_test_framework']
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080071
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000072 conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True)
73 if conf.env.BOOST_VERSION_NUMBER < 104800:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070074 Logs.error("Minimum required boost version is 1.48.0")
75 Logs.error("Please upgrade your distribution or install custom boost libraries" +
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000076 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
77 return
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080078
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070079 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD',
80 mandatory=False)
Alexander Afanasyev19508852014-01-29 01:01:51 -080081 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080082 conf.check_cxx(cxxflags=['-fPIC'], uselib_store='cxxstlib', mandatory=False)
Alexander Afanasyev19508852014-01-29 01:01:51 -080083
Alexander Afanasyev5b60f702014-02-07 12:55:24 -080084 if not conf.options.with_sqlite_locking:
85 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080086
Alexander Afanasyev59d67a52014-04-03 16:09:31 -070087 if conf.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080088 conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain
89 if conf.options.with_osx_keychain:
90 conf.define('WITH_OSX_KEYCHAIN', 1)
91 else:
92 conf.env['WITH_OSX_KEYCHAIN'] = False
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080093
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070094 # Loading "late" to prevent tests to be compiled with profiling flags
95 conf.load('coverage')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080096
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -060097 conf.define('SYSCONFDIR', conf.env['SYSCONFDIR'])
98
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070099 conf.write_config_header('src/ndn-cpp-config.hpp', define_prefix='NDN_CPP_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800100
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700101def build(bld):
102 libndn_cpp = bld(
Alexander Afanasyev59efe102014-01-29 15:56:30 -0800103 features=['cxx', 'cxxstlib'], # 'cxxshlib',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700104 # vnum="0.3.0",
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800105 target="ndn-cpp-dev",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700106 name="ndn-cpp-dev",
107 source=bld.path.ant_glob('src/**/*.cpp',
108 excl=['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']),
109 use='BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD',
110 includes=". src",
111 export_includes="src",
112 install_path='${LIBDIR}',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800113 )
114
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800115 if bld.env['WITH_PCH']:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700116 libndn_cpp.pch="src/common.hpp"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800117
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700118 if bld.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800119 libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800120 libndn_cpp.mac_app = True
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800121 libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800122
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800123 # In case we want to make it optional later
124 libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp')
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800125
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700126 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800127 pkgconfig_libs = []
128 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800129 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800130 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800131 pkgconfig_cxxflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800132 for lib in Utils.to_list(libndn_cpp.use):
133 if bld.env['LIB_%s' % lib]:
134 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
135 if bld.env['LIBPATH_%s' % lib]:
136 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
137 if bld.env['INCLUDES_%s' % lib]:
138 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800139 if bld.env['LINKFLAGS_%s' % lib]:
140 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
141 if bld.env['CXXFLAGS_%s' % lib]:
142 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800143
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800144 EXTRA_FRAMEWORKS = "";
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700145 if bld.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800146 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800147
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800148 def uniq(alist):
149 set = {}
150 return [set.setdefault(e,e) for e in alist if e not in set]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800151
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700152 pkconfig = bld(features="subst",
153 source="libndn-cpp-dev.pc.in",
154 target="libndn-cpp-dev.pc",
155 install_path="${LIBDIR}/pkgconfig",
156 VERSION=VERSION,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800157
158 # This probably not the right thing to do, but to simplify life of apps
159 # that use the library
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700160 EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
161 EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
162 EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)),
163 EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
164 EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)),
165 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS,
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800166 )
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800167
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800168 # Unit tests
169 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800170 bld.recurse('tests')
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700171 bld.recurse('tests-integrated')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800172
Yingdi Yue6bfab22014-02-06 16:01:19 -0800173 if bld.env['WITH_TOOLS']:
174 bld.recurse("tools examples")
175 else:
176 bld.recurse("examples")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800177
Alexander Afanasyev19508852014-01-29 01:01:51 -0800178 headers = bld.path.ant_glob(['src/**/*.hpp'])
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700179 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'], headers,
180 relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800181
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700182 bld.install_files("%s/ndn-cpp-dev" % bld.env['INCLUDEDIR'],
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700183 bld.path.find_resource('src/ndn-cpp-config.hpp'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800184
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600185 bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample")
186
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000187def doxygen(bld):
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800188 if not bld.env.DOXYGEN:
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000189 bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
190 bld(features="doxygen",
191 doxyfile='docs/doxygen.conf')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800192
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700193def sphinx(bld):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700194 if not bld.env.SPHINX_BUILD:
195 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700196 bld(features="sphinx",
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700197 outdir="docs/html",
198 source=bld.path.ant_glob("docs/**/*.rst"),
199 config="docs/source/conf.py")