blob: ea47f7fcd26a1bdeff73b3dbf3670bd6710c195b [file] [log] [blame]
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
Alexander Afanasyev182fdc22012-03-05 18:06:52 -08003VERSION='0.0.1'
4APPNAME='sync'
5
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -07006from waflib import Configure, Build, Logs
Alexander Afanasyev6af3c152012-06-07 21:14:24 -07007
Alexander Afanasyeve76f2632012-03-05 00:18:42 -08008def options(opt):
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -07009 opt.load('compiler_c compiler_cxx boost doxygen gnu_dirs protoc')
10 opt.load('ndnx', tooldir=["waf-tools"])
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 Afanasyev7a696fb2012-03-01 17:17:22 -080017
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080018def configure(conf):
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070019 conf.load('compiler_c compiler_cxx gnu_dirs boost')
20 conf.load('ndnx')
Alexander Afanasyev158ec0d2012-04-05 13:48:55 -070021
Zhenkai Zhu699d7402012-05-29 16:47:39 -070022 if conf.options.debug:
Alexander Afanasyev0ad7c212012-04-05 13:31:14 -070023 conf.define ('_DEBUG', 1)
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070024 conf.add_supported_cxxflags (cxxflags = ['-O0',
25 '-Wall',
26 '-Wno-unused-variable',
27 '-g3',
28 '-Wno-unused-private-field', # only clang supports
29 '-fcolor-diagnostics', # only clang supports
30 '-Qunused-arguments' # only clang supports
31 ])
Alexander Afanasyeva0c8a1d2012-04-05 13:55:42 -070032 else:
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070033 conf.add_supported_cxxflags (cxxflags = ['-O3', '-g'])
34
35 conf.check_ndnx ()
36 conf.check_openssl ()
37
38 conf.check_boost(lib='system iostreams test thread')
39
40 if conf.options.log4cxx:
41 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True)
Alexander Afanasyev0ad7c212012-04-05 13:31:14 -070042
Zhenkai Zhu43ae5c72012-05-31 23:18:45 -070043 if conf.options._test:
44 conf.define('_TEST', 1)
45
Alexander Afanasyev34ebcb72012-03-08 15:54:55 -080046 try:
47 conf.load('doxygen')
48 except:
49 pass
50
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070051 conf.load('protoc')
Zhenkai Zhu3cfdcb92012-06-06 15:20:10 -070052
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080053def build (bld):
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070054 libsync = bld (
55 target=APPNAME,
56 features=['cxx', 'cxxshlib'],
57 source = ant_glob (['src/**/*.cc', 'src/**/*.proto']),
58 use = 'BOOST BOOST_IOSTREAMS BOOST_THREAD SSL NDNX',
59 includes = ['include', 'src'],
Alexander Afanasyev6af3c152012-06-07 21:14:24 -070060 )
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070061
62 # Unit tests
63 if bld.get_define("_TEST"):
64 unittests = bld.program (
65 target="unit-tests",
66 source = bld.path.ant_glob(['tests/**/*.cc']),
67 features=['cxx', 'cxxprogram'],
68 use = 'BOOST_TEST sync',
69 includes = ['include', 'src'],
70 )
Alexander Afanasyev6af3c152012-06-07 21:14:24 -070071
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070072 if bld.get_define ("HAVE_LOG4CXX"):
73 libsync.use += ' LOG4CXX'
Zhenkai Zhu43ae5c72012-05-31 23:18:45 -070074 if bld.get_define("_TEST"):
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070075 unittests.use += ' LOG4CXX'
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070076
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070077 headers = bld.path.ant_glob(['include/*.h'])
78 headers.extend (bld.path.get_bld().ant_glob(['model/sync-state.pb.h']))
79 bld.install_files ("%s/sync" % bld.env['INCLUDEDIR'], headers)
Alexander Afanasyeve76f2632012-03-05 00:18:42 -080080
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -070081 pc = bld (
82 features = "subst",
83 source='libsync.pc.in',
84 target='libsync.pc',
85 install_path = '${LIBDIR}/pkgconfig',
86 PREFIX = bld.env['PREFIX'],
87 INCLUDEDIR = "%s/sync" % bld.env['INCLUDEDIR'],
88 VERSION = VERSION,
89 )
Alexander Afanasyev6af3c152012-06-07 21:14:24 -070090
Alexander Afanasyev150f14d2012-03-05 21:24:49 -080091# doxygen docs
Alexander Afanasyev182fdc22012-03-05 18:06:52 -080092from waflib.Build import BuildContext
93class doxy (BuildContext):
94 cmd = "doxygen"
95 fun = "doxygen"
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -080096
Alexander Afanasyev182fdc22012-03-05 18:06:52 -080097def doxygen (bld):
Alexander Afanasyev34ebcb72012-03-08 15:54:55 -080098 if not bld.env.DOXYGEN:
99 bld.fatal ("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
Alexander Afanasyev182fdc22012-03-05 18:06:52 -0800100 bld (features="doxygen",
101 doxyfile='doc/doxygen.conf',
102 output_dir = 'doc')
Alexander Afanasyev6133f9a2013-07-14 10:58:26 -0700103
104@Configure.conf
105def add_supported_cxxflags(self, cxxflags):
106 """
107 Check which cxxflags are supported by compiler and add them to env.CXXFLAGS variable
108 """
109 self.start_msg('Checking allowed flags for c++ compiler')
110
111 supportedFlags = []
112 for flag in cxxflags:
113 if self.check_cxx (cxxflags=[flag], mandatory=False):
114 supportedFlags += [flag]
115
116 self.end_msg (' '.join (supportedFlags))
117 self.env.CXXFLAGS += supportedFlags