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; -*- |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 2 | |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 3 | from waflib import Logs, Utils |
| 4 | import re |
| 5 | |
| 6 | VERSION = re.search('^#define NDN_CXX_VERSION_STRING\\s+"(.*)"', |
| 7 | open("src/version.hpp").read(), re.M).group(1) |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 8 | APPNAME = "ndn-cxx" |
| 9 | PACKAGE_BUGREPORT = "http://redmine.named-data.net/projects/ndn-cxx" |
| 10 | PACKAGE_URL = "https://github.com/named-data/ndn-cxx" |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 11 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 12 | def options(opt): |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 13 | opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx']) |
| 14 | opt.load(['default-compiler-flags', 'coverage', 'osx-security', 'pch', |
| 15 | 'boost', 'openssl', 'cryptopp', 'sqlite3', |
| 16 | 'doxygen', 'sphinx_build'], |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 17 | tooldir=['.waf-tools']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 18 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 19 | opt = opt.add_option_group('Library Options') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 20 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 21 | opt.add_option('--with-tests', action='store_true', default=False, dest='with_tests', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 22 | help='''build unit tests''') |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 23 | opt.add_option('--with-log4cxx', action='store_true', default=False, dest='log4cxx', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 24 | help='''Compile with log4cxx logging support''') |
| 25 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 26 | opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools', |
| 27 | help='''Do not build tools''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 28 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 29 | 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 Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 33 | '''This option may be necessary if home directory is hosted on NFS.''') |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 34 | opt.add_option('--without-osx-keychain', action='store_false', default=True, |
| 35 | dest='with_osx_keychain', |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 36 | help='''On Darwin, do not use OSX keychain as a default TPM''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 37 | |
| 38 | def configure(conf): |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 39 | 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 Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 43 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 44 | conf.env['WITH_TESTS'] = conf.options.with_tests |
| 45 | conf.env['WITH_TOOLS'] = conf.options.with_tools |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 46 | |
Alexander Afanasyev | 95de62e | 2014-04-11 18:26:33 -0700 | [diff] [blame] | 47 | conf.find_program('sh', var='SH', mandatory=True) |
| 48 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 49 | conf.check_osx_security(mandatory=False) |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 50 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 51 | conf.check_openssl(mandatory=True) |
| 52 | conf.check_sqlite3(mandatory=True) |
| 53 | conf.check_cryptopp(mandatory=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 54 | |
| 55 | if conf.options.log4cxx: |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 56 | conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', |
| 57 | mandatory=True) |
| 58 | conf.define("HAVE_LOG4CXX", 1) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 59 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 60 | if conf.options.use_cxx11: |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 61 | conf.check(msg='Checking for type std::shared_ptr', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 62 | type_name="std::shared_ptr<int>", header_name="memory", |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 63 | define_name='HAVE_STD_SHARED_PTR', mandatory=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 64 | conf.check(msg='Checking for type std::function', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 65 | type_name="std::function<void()>", header_name="functional", |
Alexander Afanasyev | b78bc4d | 2014-04-09 21:20:52 -0700 | [diff] [blame] | 66 | define_name='HAVE_STD_FUNCTION', mandatory=True) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 67 | conf.define('HAVE_CXX11', 1) |
Alexander Afanasyev | 1dd95c5 | 2014-03-22 19:11:36 -0700 | [diff] [blame] | 68 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 69 | USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams', |
| 70 | 'regex', 'program_options', 'chrono'] |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 71 | if conf.env['WITH_TESTS']: |
| 72 | USED_BOOST_LIBS += ['unit_test_framework'] |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 73 | conf.define('HAVE_TESTS', 1) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 74 | |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 75 | conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True) |
| 76 | if conf.env.BOOST_VERSION_NUMBER < 104800: |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 77 | Logs.error("Minimum required boost version is 1.48.0") |
| 78 | Logs.error("Please upgrade your distribution or install custom boost libraries" + |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 79 | " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
| 80 | return |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 81 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 82 | conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', |
| 83 | mandatory=False) |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 84 | conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 85 | conf.check_cxx(cxxflags=['-fPIC'], uselib_store='cxxstlib', mandatory=False) |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 86 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 87 | if not conf.options.with_sqlite_locking: |
| 88 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 89 | |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 90 | if conf.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 91 | conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain |
| 92 | if conf.options.with_osx_keychain: |
| 93 | conf.define('WITH_OSX_KEYCHAIN', 1) |
| 94 | else: |
| 95 | conf.env['WITH_OSX_KEYCHAIN'] = False |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 96 | |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 97 | # Loading "late" to prevent tests to be compiled with profiling flags |
| 98 | conf.load('coverage') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 99 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 100 | conf.define('SYSCONFDIR', conf.env['SYSCONFDIR']) |
| 101 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 102 | conf.write_config_header('src/ndn-cxx-config.hpp', define_prefix='NDN_CXX_') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 103 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 104 | def build(bld): |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 105 | libndn_cxx = bld( |
Alexander Afanasyev | 59efe10 | 2014-01-29 15:56:30 -0800 | [diff] [blame] | 106 | features=['cxx', 'cxxstlib'], # 'cxxshlib', |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 107 | # vnum="0.3.0", |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 108 | target="ndn-cxx", |
| 109 | name="ndn-cxx", |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 110 | source=bld.path.ant_glob('src/**/*.cpp', |
| 111 | excl=['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']), |
| 112 | use='BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD', |
| 113 | includes=". src", |
| 114 | export_includes="src", |
| 115 | install_path='${LIBDIR}', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 116 | ) |
| 117 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 118 | if bld.env['WITH_PCH']: |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 119 | libndn_cxx.pch="src/common.hpp" |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 120 | |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 121 | if bld.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 122 | libndn_cxx.source += bld.path.ant_glob('src/**/*-osx.cpp') |
| 123 | libndn_cxx.mac_app = True |
| 124 | libndn_cxx.use += " OSX_COREFOUNDATION OSX_SECURITY" |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 125 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 126 | # In case we want to make it optional later |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 127 | libndn_cxx.source += bld.path.ant_glob('src/**/*-sqlite3.cpp') |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 128 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 129 | # Prepare flags that should go to pkgconfig file |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 130 | pkgconfig_libs = [] |
| 131 | pkgconfig_ldflags = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 132 | pkgconfig_linkflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 133 | pkgconfig_includes = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 134 | pkgconfig_cxxflags = [] |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 135 | for lib in Utils.to_list(libndn_cxx.use): |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 136 | if bld.env['LIB_%s' % lib]: |
| 137 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 138 | if bld.env['LIBPATH_%s' % lib]: |
| 139 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 140 | if bld.env['INCLUDES_%s' % lib]: |
| 141 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 142 | if bld.env['LINKFLAGS_%s' % lib]: |
| 143 | pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib]) |
| 144 | if bld.env['CXXFLAGS_%s' % lib]: |
| 145 | pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib]) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 146 | |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 147 | EXTRA_FRAMEWORKS = ""; |
Alexander Afanasyev | 59d67a5 | 2014-04-03 16:09:31 -0700 | [diff] [blame] | 148 | if bld.env['HAVE_OSX_SECURITY']: |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 149 | EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security" |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 150 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 151 | def uniq(alist): |
| 152 | set = {} |
| 153 | return [set.setdefault(e,e) for e in alist if e not in set] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 154 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 155 | pkconfig = bld(features="subst", |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 156 | source="libndn-cxx.pc.in", |
| 157 | target="libndn-cxx.pc", |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 158 | install_path="${LIBDIR}/pkgconfig", |
| 159 | VERSION=VERSION, |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 160 | |
| 161 | # This probably not the right thing to do, but to simplify life of apps |
| 162 | # that use the library |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 163 | EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 164 | EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
| 165 | EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)), |
| 166 | EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
| 167 | EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)), |
| 168 | EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS, |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 169 | ) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 170 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 171 | # Unit tests |
| 172 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 173 | bld.recurse('tests') |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 174 | bld.recurse('tests-integrated') |
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 | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 180 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 181 | headers = bld.path.ant_glob(['src/**/*.hpp']) |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 182 | bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], headers, |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 183 | relative_trick=True, cwd=bld.path.find_node('src')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 184 | |
Alexander Afanasyev | 766cea7 | 2014-04-24 19:16:42 -0700 | [diff] [blame] | 185 | bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], |
| 186 | bld.path.find_resource('src/ndn-cxx-config.hpp')) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 187 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 188 | bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample") |
| 189 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 190 | if bld.env['SPHINX_BUILD']: |
| 191 | bld(features="sphinx", |
| 192 | builder="man", |
| 193 | outdir="docs/manpages", |
| 194 | config="docs/conf.py", |
| 195 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 196 | install_path="${MANDIR}/", |
| 197 | VERSION=VERSION) |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 198 | |
| 199 | def docs(bld): |
| 200 | from waflib import Options |
| 201 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 202 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 203 | def doxygen(bld): |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 204 | if not bld.env.DOXYGEN: |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 205 | Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 206 | else: |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 207 | bld(features="subst", |
| 208 | name="doxygen-conf", |
| 209 | source="docs/doxygen.conf.in", |
| 210 | target="docs/doxygen.conf", |
| 211 | VERSION=VERSION, |
| 212 | ) |
| 213 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 214 | bld(features="doxygen", |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 215 | doxyfile='docs/doxygen.conf', |
| 216 | use="doxygen-conf") |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 217 | |
Alexander Afanasyev | 5e1288e | 2014-03-28 11:11:48 -0700 | [diff] [blame] | 218 | def sphinx(bld): |
Alexander Afanasyev | 1160baa | 2014-04-10 18:50:29 -0700 | [diff] [blame] | 219 | if not bld.env.SPHINX_BUILD: |
| 220 | bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)") |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 221 | else: |
| 222 | bld(features="sphinx", |
| 223 | outdir="docs", |
| 224 | source=bld.path.ant_glob("docs/**/*.rst"), |
Alexander Afanasyev | a06fdda | 2014-04-29 19:15:00 -0700 | [diff] [blame] | 225 | config="docs/conf.py", |
| 226 | VERSION=VERSION) |