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 |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 6 | from waflib.Tools import c_preproc |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 7 | |
| 8 | def options(opt): |
| 9 | opt.load('compiler_c compiler_cxx gnu_dirs c_osx') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 10 | opt.load('boost doxygen openssl cryptopp coverage', tooldir=['.waf-tools']) |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 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''') |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 15 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 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''') |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 23 | opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools', |
| 24 | help='''Do not build tools''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 25 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 26 | opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking', |
| 27 | help='''Disable filesystem locking in sqlite3 database (use unix-dot locking mechanism instead). ''' |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 28 | '''This option may be necessary if home directory is hosted on NFS.''') |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 29 | opt.add_option('--with-pch', action='store_true', default=False, dest='with_pch', |
| 30 | help='''Try to use precompiled header to speed up compilation (only gcc and clang)''') |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 31 | opt.add_option('--without-osx-keychain', action='store_false', default=True, dest='with_osx_keychain', |
| 32 | help='''On Darwin, do not use OSX keychain as a default TPM''') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 33 | |
| 34 | def 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 Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 44 | if conf.options.with_tools: |
| 45 | conf.env['WITH_TOOLS'] = True |
| 46 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 47 | 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 Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 72 | 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 Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 76 | |
| 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) |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 98 | |
| 99 | USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams', 'regex', 'program_options', 'chrono'] |
| 100 | if conf.env['WITH_TESTS']: |
| 101 | USED_BOOST_LIBS += ['unit_test_framework'] |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 102 | |
Alexander Afanasyev | dafdc37 | 2014-03-03 15:58:44 +0000 | [diff] [blame] | 103 | conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True) |
| 104 | if conf.env.BOOST_VERSION_NUMBER < 104800: |
| 105 | Logs.error ("Minimum required boost version is 1.48.0") |
| 106 | Logs.error ("Please upgrade your distribution or install custom boost libraries" + |
| 107 | " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
| 108 | return |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 109 | |
Alexander Afanasyev | c6d795f | 2014-01-29 15:13:59 -0800 | [diff] [blame] | 110 | 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] | 111 | 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] | 112 | conf.check_cxx(cxxflags=['-fPIC'], uselib_store='cxxstlib', mandatory=False) |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 113 | |
Alexander Afanasyev | 5b60f70 | 2014-02-07 12:55:24 -0800 | [diff] [blame] | 114 | if not conf.options.with_sqlite_locking: |
| 115 | conf.define('DISABLE_SQLITE3_FS_LOCKING', 1) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 116 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 117 | conf.env['WITH_PCH'] = conf.options.with_pch |
Alexander Afanasyev | 3e08d5d | 2014-02-12 19:24:28 -0800 | [diff] [blame] | 118 | |
| 119 | if Utils.unversioned_sys_platform () == "darwin": |
| 120 | conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain |
| 121 | if conf.options.with_osx_keychain: |
| 122 | conf.define('WITH_OSX_KEYCHAIN', 1) |
| 123 | else: |
| 124 | conf.env['WITH_OSX_KEYCHAIN'] = False |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 125 | |
| 126 | conf.load("coverage") |
| 127 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 128 | 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] | 129 | |
| 130 | def build (bld): |
| 131 | libndn_cpp = bld ( |
Alexander Afanasyev | 59efe10 | 2014-01-29 15:56:30 -0800 | [diff] [blame] | 132 | features=['cxx', 'cxxstlib'], # 'cxxshlib', |
| 133 | # vnum = "0.3.0", |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 134 | target="ndn-cpp-dev", |
| 135 | name = "ndn-cpp-dev", |
| 136 | source = bld.path.ant_glob('src/**/*.cpp', |
| 137 | excl = ['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']), |
Alexander Afanasyev | 88c6945 | 2014-02-11 18:13:41 -0800 | [diff] [blame] | 138 | use = 'BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD', |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 139 | includes = ". src", |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 140 | export_includes = "src", |
Alexander Afanasyev | c6d795f | 2014-01-29 15:13:59 -0800 | [diff] [blame] | 141 | install_path = '${LIBDIR}', |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 142 | ) |
| 143 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 144 | if bld.env['WITH_PCH']: |
| 145 | libndn_cpp.pch = "src/common.hpp" |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 146 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 147 | if Utils.unversioned_sys_platform () == "darwin": |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 148 | libndn_cpp.source += bld.path.ant_glob('src/**/*-osx.cpp') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 149 | libndn_cpp.mac_app = True |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 150 | libndn_cpp.use += " OSX_COREFOUNDATION OSX_SECURITY" |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 151 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 152 | # In case we want to make it optional later |
| 153 | libndn_cpp.source += bld.path.ant_glob('src/**/*-sqlite3.cpp') |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 154 | |
Alexander Afanasyev | 1e0a077 | 2014-01-28 20:07:07 -0800 | [diff] [blame] | 155 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 156 | pkgconfig_libs = [] |
| 157 | pkgconfig_ldflags = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 158 | pkgconfig_linkflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 159 | pkgconfig_includes = [] |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 160 | pkgconfig_cxxflags = [] |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 161 | for lib in Utils.to_list(libndn_cpp.use): |
| 162 | if bld.env['LIB_%s' % lib]: |
| 163 | pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib]) |
| 164 | if bld.env['LIBPATH_%s' % lib]: |
| 165 | pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib]) |
| 166 | if bld.env['INCLUDES_%s' % lib]: |
| 167 | pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib]) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 168 | if bld.env['LINKFLAGS_%s' % lib]: |
| 169 | pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib]) |
| 170 | if bld.env['CXXFLAGS_%s' % lib]: |
| 171 | pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib]) |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 172 | |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 173 | EXTRA_FRAMEWORKS = ""; |
| 174 | if Utils.unversioned_sys_platform () == "darwin": |
| 175 | EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security" |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 176 | |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 177 | def uniq(alist): |
| 178 | set = {} |
| 179 | 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] | 180 | |
| 181 | pkconfig = bld (features = "subst", |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 182 | source = "libndn-cpp-dev.pc.in", |
| 183 | target = "libndn-cpp-dev.pc", |
| 184 | install_path = "${LIBDIR}/pkgconfig", |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 185 | VERSION = VERSION, |
| 186 | |
| 187 | # This probably not the right thing to do, but to simplify life of apps |
| 188 | # that use the library |
| 189 | EXTRA_LIBS = " ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]), |
| 190 | EXTRA_LDFLAGS = " ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]), |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 191 | EXTRA_LINKFLAGS = " ".join(uniq(pkgconfig_linkflags)), |
Alexander Afanasyev | 200dd6f | 2014-01-28 19:04:25 -0800 | [diff] [blame] | 192 | EXTRA_INCLUDES = " ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]), |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 193 | EXTRA_CXXFLAGS = " ".join(uniq(pkgconfig_cxxflags)), |
Alexander Afanasyev | 84cf429 | 2014-01-29 22:16:27 -0800 | [diff] [blame] | 194 | EXTRA_FRAMEWORKS = EXTRA_FRAMEWORKS, |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 195 | ) |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 196 | |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 197 | # Unit tests |
| 198 | if bld.env['WITH_TESTS']: |
Alexander Afanasyev | d409d59 | 2014-01-28 18:36:38 -0800 | [diff] [blame] | 199 | bld.recurse('tests') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 200 | |
Yingdi Yu | e6bfab2 | 2014-02-06 16:01:19 -0800 | [diff] [blame] | 201 | if bld.env['WITH_TOOLS']: |
| 202 | bld.recurse("tools examples") |
| 203 | else: |
| 204 | bld.recurse("examples") |
Alexander Afanasyev | f5df8e6 | 2014-02-16 19:56:21 -0800 | [diff] [blame] | 205 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 206 | headers = bld.path.ant_glob(['src/**/*.hpp']) |
| 207 | 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] | 208 | |
Alexander Afanasyev | 1950885 | 2014-01-29 01:01:51 -0800 | [diff] [blame] | 209 | 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] | 210 | |
| 211 | @Configure.conf |
| 212 | def add_supported_cxxflags(self, cxxflags): |
| 213 | """ |
| 214 | Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable |
| 215 | """ |
| 216 | self.start_msg('Checking allowed flags for c++ compiler') |
| 217 | |
| 218 | supportedFlags = [] |
| 219 | for flag in cxxflags: |
| 220 | if self.check_cxx (cxxflags=[flag], mandatory=False): |
| 221 | supportedFlags += [flag] |
| 222 | |
| 223 | self.end_msg (' '.join (supportedFlags)) |
| 224 | self.env.CXXFLAGS += supportedFlags |
| 225 | |
| 226 | # doxygen docs |
| 227 | from waflib.Build import BuildContext |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 228 | class doxy(BuildContext): |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 229 | cmd = "doxygen" |
| 230 | fun = "doxygen" |
| 231 | |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 232 | def doxygen(bld): |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 233 | if not bld.env.DOXYGEN: |
Alexander Afanasyev | 401a236 | 2014-03-02 00:03:11 +0000 | [diff] [blame] | 234 | bld.fatal("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 235 | bld(features="doxygen", |
| 236 | doxyfile='docs/doxygen.conf') |
Alexander Afanasyev | a1ae0a1 | 2014-01-28 15:21:02 -0800 | [diff] [blame] | 237 | |
| 238 | # doxygen docs |
| 239 | from waflib.Build import BuildContext |
| 240 | class sphinx (BuildContext): |
| 241 | cmd = "sphinx" |
| 242 | fun = "sphinx" |
| 243 | |
| 244 | def sphinx (bld): |
| 245 | bld.load('sphinx_build', tooldir=['waf-tools']) |
| 246 | |
| 247 | bld (features="sphinx", |
| 248 | outdir = "doc/html", |
| 249 | source = "doc/source/conf.py") |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 250 | |
| 251 | |
| 252 | @TaskGen.feature('cxx') |
| 253 | @TaskGen.before('process_source') |
| 254 | def process_pch(self): |
| 255 | if getattr(self, 'pch', ''): |
| 256 | # for now support only gcc-compatible things |
| 257 | if self.env['COMPILER_CXX'] == 'g++': |
| 258 | nodes = self.to_nodes(self.pch, path=self.path) |
| 259 | for x in nodes: |
| 260 | z = self.create_task('gchx', x, x.change_ext('.hpp.gch')) |
| 261 | z.orig_self = self |
| 262 | |
| 263 | class gchx(Task.Task): |
| 264 | run_str = '${CXX} -x c++-header ${CXXFLAGS} ${FRAMEWORKPATH_ST:FRAMEWORKPATH} ${CPPPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ${CXX_SRC_F}${SRC} ${CXX_TGT_F}${TGT}' |
| 265 | scan = c_preproc.scan |
| 266 | ext_out = ['.hpp'] |
| 267 | color = 'BLUE' |
| 268 | |
| 269 | def post_run(self): |
| 270 | super(gchx, self).post_run() |
| 271 | self.orig_self.env['CXXFLAGS'] = ['-include', self.inputs[0].relpath()] + self.env['CXXFLAGS'] |