Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
Alexander Afanasyev | 7804c23 | 2013-07-14 12:15:41 -0700 | [diff] [blame] | 3 | VERSION='0.1' |
| 4 | APPNAME='ChronoSync' |
Alexander Afanasyev | 182fdc2 | 2012-03-05 18:06:52 -0800 | [diff] [blame] | 5 | |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 6 | from waflib import Configure, Build, Logs |
Alexander Afanasyev | 6af3c15 | 2012-06-07 21:14:24 -0700 | [diff] [blame] | 7 | |
Alexander Afanasyev | e76f263 | 2012-03-05 00:18:42 -0800 | [diff] [blame] | 8 | def options(opt): |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 9 | opt.load('compiler_c compiler_cxx boost doxygen gnu_dirs protoc') |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 10 | # opt.load('ndnx', tooldir=["waf-tools"]) |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 11 | |
| 12 | syncopt = opt.add_option_group ("ChronoSync Options") |
| 13 | |
| 14 | syncopt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''') |
| 15 | syncopt.add_option('--log4cxx', action='store_true',default=False,dest='log4cxx',help='''Compile with log4cxx''') |
| 16 | syncopt.add_option('--test', action='store_true',default=False,dest='_test',help='''build unit tests''') |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 17 | |
Alexander Afanasyev | 8f25cbb | 2012-03-01 23:53:40 -0800 | [diff] [blame] | 18 | def configure(conf): |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 19 | conf.load('compiler_c compiler_cxx gnu_dirs boost') |
Alexander Afanasyev | 158ec0d | 2012-04-05 13:48:55 -0700 | [diff] [blame] | 20 | |
Zhenkai Zhu | 699d740 | 2012-05-29 16:47:39 -0700 | [diff] [blame] | 21 | if conf.options.debug: |
Alexander Afanasyev | 0ad7c21 | 2012-04-05 13:31:14 -0700 | [diff] [blame] | 22 | conf.define ('_DEBUG', 1) |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 23 | conf.add_supported_cxxflags (cxxflags = ['-O0', |
| 24 | '-Wall', |
| 25 | '-Wno-unused-variable', |
| 26 | '-g3', |
| 27 | '-Wno-unused-private-field', # only clang supports |
| 28 | '-fcolor-diagnostics', # only clang supports |
| 29 | '-Qunused-arguments' # only clang supports |
| 30 | ]) |
Alexander Afanasyev | a0c8a1d | 2012-04-05 13:55:42 -0700 | [diff] [blame] | 31 | else: |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 32 | conf.add_supported_cxxflags (cxxflags = ['-O3', '-g']) |
| 33 | |
Yingdi Yu | e815471 | 2014-01-21 10:20:14 -0800 | [diff] [blame] | 34 | conf.check_cfg(package='libndn-cpp-dev', args=['--cflags', '--libs'], uselib_store='NDNCPP', mandatory=True) |
Yingdi Yu | ce841ca | 2013-12-14 08:28:00 +0800 | [diff] [blame] | 35 | |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 36 | conf.check_cfg(package='openssl', args=['--cflags', '--libs'], uselib_store='OPENSSL', mandatory=True) |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 37 | |
Yingdi Yu | 280bb96 | 2014-01-30 09:52:43 -0800 | [diff] [blame] | 38 | conf.check_boost(lib='system iostreams thread unit_test_framework') |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 39 | |
| 40 | if conf.options.log4cxx: |
| 41 | conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True) |
Alexander Afanasyev | 0ad7c21 | 2012-04-05 13:31:14 -0700 | [diff] [blame] | 42 | |
Zhenkai Zhu | 43ae5c7 | 2012-05-31 23:18:45 -0700 | [diff] [blame] | 43 | if conf.options._test: |
| 44 | conf.define('_TEST', 1) |
| 45 | |
Alexander Afanasyev | 34ebcb7 | 2012-03-08 15:54:55 -0800 | [diff] [blame] | 46 | try: |
| 47 | conf.load('doxygen') |
| 48 | except: |
| 49 | pass |
| 50 | |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 51 | conf.load('protoc') |
Zhenkai Zhu | 3cfdcb9 | 2012-06-06 15:20:10 -0700 | [diff] [blame] | 52 | |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 53 | def build (bld): |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 54 | libsync = bld ( |
Alexander Afanasyev | f46eac5 | 2013-07-26 11:27:39 -0700 | [diff] [blame] | 55 | target="ChronoSync", |
Yingdi Yu | ce841ca | 2013-12-14 08:28:00 +0800 | [diff] [blame] | 56 | # vnum = "1.0.0", |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 57 | features=['cxx', 'cxxshlib'], |
Alexander Afanasyev | ce00169 | 2013-07-14 11:34:41 -0700 | [diff] [blame] | 58 | source = bld.path.ant_glob (['src/**/*.cc', 'src/**/*.proto']), |
Yingdi Yu | 280bb96 | 2014-01-30 09:52:43 -0800 | [diff] [blame] | 59 | use = 'BOOST NDNCPP OPENSSL', |
Alexander Afanasyev | ce00169 | 2013-07-14 11:34:41 -0700 | [diff] [blame] | 60 | includes = ['src'], |
Alexander Afanasyev | 6af3c15 | 2012-06-07 21:14:24 -0700 | [diff] [blame] | 61 | ) |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 62 | |
| 63 | # Unit tests |
| 64 | if bld.get_define("_TEST"): |
| 65 | unittests = bld.program ( |
| 66 | target="unit-tests", |
| 67 | source = bld.path.ant_glob(['tests/**/*.cc']), |
| 68 | features=['cxx', 'cxxprogram'], |
Yingdi Yu | 280bb96 | 2014-01-30 09:52:43 -0800 | [diff] [blame] | 69 | use = 'ChronoSync', |
Alexander Afanasyev | ce00169 | 2013-07-14 11:34:41 -0700 | [diff] [blame] | 70 | includes = ['src'], |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 71 | ) |
Alexander Afanasyev | 6af3c15 | 2012-06-07 21:14:24 -0700 | [diff] [blame] | 72 | |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 73 | if bld.get_define ("HAVE_LOG4CXX"): |
| 74 | libsync.use += ' LOG4CXX' |
Zhenkai Zhu | 43ae5c7 | 2012-05-31 23:18:45 -0700 | [diff] [blame] | 75 | if bld.get_define("_TEST"): |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 76 | unittests.use += ' LOG4CXX' |
Alexander Afanasyev | 4f9ea48 | 2012-03-15 11:57:29 -0700 | [diff] [blame] | 77 | |
Alexander Afanasyev | ce00169 | 2013-07-14 11:34:41 -0700 | [diff] [blame] | 78 | bld.install_files ( |
| 79 | dest = "%s/ChronoSync" % bld.env['INCLUDEDIR'], |
| 80 | files = bld.path.ant_glob(['src/**/*.h']), |
| 81 | cwd = bld.path.find_dir ("src"), |
| 82 | relative_trick = True, |
| 83 | ) |
| 84 | |
| 85 | bld.install_files ( |
| 86 | dest = "%s/ChronoSync" % bld.env['INCLUDEDIR'], |
| 87 | files = bld.path.get_bld().ant_glob(['src/**/*.h']), |
| 88 | cwd = bld.path.get_bld().find_dir ("src"), |
| 89 | relative_trick = True, |
| 90 | ) |
Alexander Afanasyev | e76f263 | 2012-03-05 00:18:42 -0800 | [diff] [blame] | 91 | |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 92 | pc = bld ( |
| 93 | features = "subst", |
Alexander Afanasyev | 7804c23 | 2013-07-14 12:15:41 -0700 | [diff] [blame] | 94 | source='ChronoSync.pc.in', |
| 95 | target='ChronoSync.pc', |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 96 | install_path = '${LIBDIR}/pkgconfig', |
| 97 | PREFIX = bld.env['PREFIX'], |
Alexander Afanasyev | ce00169 | 2013-07-14 11:34:41 -0700 | [diff] [blame] | 98 | INCLUDEDIR = "%s/ChronoSync" % bld.env['INCLUDEDIR'], |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 99 | VERSION = VERSION, |
| 100 | ) |
Alexander Afanasyev | 6af3c15 | 2012-06-07 21:14:24 -0700 | [diff] [blame] | 101 | |
Alexander Afanasyev | 150f14d | 2012-03-05 21:24:49 -0800 | [diff] [blame] | 102 | # doxygen docs |
Alexander Afanasyev | 182fdc2 | 2012-03-05 18:06:52 -0800 | [diff] [blame] | 103 | from waflib.Build import BuildContext |
| 104 | class doxy (BuildContext): |
| 105 | cmd = "doxygen" |
| 106 | fun = "doxygen" |
Alexander Afanasyev | 7a696fb | 2012-03-01 17:17:22 -0800 | [diff] [blame] | 107 | |
Alexander Afanasyev | 182fdc2 | 2012-03-05 18:06:52 -0800 | [diff] [blame] | 108 | def doxygen (bld): |
Alexander Afanasyev | 34ebcb7 | 2012-03-08 15:54:55 -0800 | [diff] [blame] | 109 | if not bld.env.DOXYGEN: |
| 110 | bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
Alexander Afanasyev | 182fdc2 | 2012-03-05 18:06:52 -0800 | [diff] [blame] | 111 | bld (features="doxygen", |
| 112 | doxyfile='doc/doxygen.conf', |
| 113 | output_dir = 'doc') |
Alexander Afanasyev | 6133f9a | 2013-07-14 10:58:26 -0700 | [diff] [blame] | 114 | |
| 115 | @Configure.conf |
| 116 | def add_supported_cxxflags(self, cxxflags): |
| 117 | """ |
| 118 | Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable |
| 119 | """ |
| 120 | self.start_msg('Checking allowed flags for c++ compiler') |
| 121 | |
| 122 | supportedFlags = [] |
| 123 | for flag in cxxflags: |
| 124 | if self.check_cxx (cxxflags=[flag], mandatory=False): |
| 125 | supportedFlags += [flag] |
| 126 | |
| 127 | self.end_msg (' '.join (supportedFlags)) |
| 128 | self.env.CXXFLAGS += supportedFlags |