blob: 084d7645a6fdbe22365c957a716106e6dbb8c4db [file] [log] [blame]
Zhenkai Zhua7e3da72012-12-27 13:45:00 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
Alexander Afanasyev71b43e72012-12-27 01:03:43 -08003VERSION='0.1'
Zhenkai Zhua7e3da72012-12-27 13:45:00 -08004APPNAME='chronoshare'
5
6from waflib import Build, Logs
7
8def options(opt):
9 opt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''')
10 opt.add_option('--test', action='store_true',default=False,dest='_test',help='''build unit tests''')
Alexander Afanasyev71b43e72012-12-27 01:03:43 -080011 opt.add_option('--yes',action='store_true',default=False) # for autoconf/automake/make compatibility
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080012 opt.add_option('--log4cxx', action='store_true',default=False,dest='log4cxx',help='''Compile with log4cxx logging support''')
Alexander Afanasyev5f9d09e2012-12-28 19:43:08 -080013
Alexander Afanasyev9c9c3012013-01-25 23:44:25 -080014 opt.load('compiler_cxx boost ccnx protoc qt4')
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080015
16def configure(conf):
17 conf.load("compiler_cxx")
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080018
Alexander Afanasyevf2890632013-01-02 13:40:02 -080019 conf.define ("CHRONOSHARE_VERSION", VERSION)
20
Alexander Afanasyev71b43e72012-12-27 01:03:43 -080021 conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', mandatory=True)
Zhenkai Zhubc2f6282013-01-08 16:40:58 -080022 conf.check_cfg(package='libevent', args=['--cflags', '--libs'], uselib_store='LIBEVENT', mandatory=True)
23 conf.check_cfg(package='libevent_pthreads', args=['--cflags', '--libs'], uselib_store='LIBEVENT_PTHREADS', mandatory=True)
24
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080025 if not conf.check_cfg(package='openssl', args=['--cflags', '--libs'], uselib_store='SSL', mandatory=False):
Alexander Afanasyev5f9d09e2012-12-28 19:43:08 -080026 libcrypto = conf.check_cc(lib='crypto',
27 header_name='openssl/crypto.h',
28 define_name='HAVE_SSL',
29 uselib_store='SSL')
30 else:
31 conf.define ("HAVE_SSL", 1)
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080032 if not conf.get_define ("HAVE_SSL"):
33 conf.fatal ("Cannot find SSL libraries")
34
Alexander Afanasyevc507ac22013-01-21 16:01:58 -080035 if conf.options.log4cxx:
36 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX', mandatory=True)
37 conf.define ("HAVE_LOG4CXX", 1)
38
Zhenkai Zhu0a17aea2012-12-28 14:30:22 -080039 conf.load ('ccnx')
Alexander Afanasyev33206982013-01-09 16:29:29 -080040
41 conf.load('protoc')
Alexander Afanasyev33206982013-01-09 16:29:29 -080042
43 conf.load('qt4')
44
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080045 conf.load('boost')
46
Alexander Afanasyev68f2a952013-01-08 14:34:16 -080047 conf.check_boost(lib='system test iostreams filesystem regex thread')
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080048
Alexander Afanasyev71b43e72012-12-27 01:03:43 -080049 boost_version = conf.env.BOOST_VERSION.split('_')
50 if int(boost_version[0]) < 1 or int(boost_version[1]) < 46:
51 Logs.error ("Minumum required boost version is 1.46")
52 return
53
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080054 conf.check_ccnx (path=conf.options.ccnx_dir)
55
56 if conf.options.debug:
57 conf.define ('_DEBUG', 1)
Alexander Afanasyevd7245812013-02-13 21:06:57 -080058 conf.env.append_value('CXXFLAGS', ['-O0', '-Wall', '-Wno-unused-variable', '-g3'])
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080059 else:
Alexander Afanasyevd7245812013-02-13 21:06:57 -080060 conf.env.append_value('CXXFLAGS', ['-O3', '-g'])
61
62 if conf.env["CXX"] == ["clang++"]:
63 conf.env.append_value('CXXFLAGS', ['-fcolor-diagnostics', '-Qunused-arguments'])
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080064
65 if conf.options._test:
Alexander Afanasyev9e5a4702013-01-24 13:15:23 -080066 conf.define ('_TESTS', 1)
Alexander Afanasyev72ac2192013-01-03 19:33:43 -080067 conf.env.TEST = 1
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080068
Alexander Afanasyev71b43e72012-12-27 01:03:43 -080069 conf.write_config_header('src/config.h')
70
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080071def build (bld):
Zhenkai Zhue8409422013-01-28 12:52:17 -080072 executor = bld.objects (
73 target = "executor",
74 features = ["cxx"],
75 source = bld.path.ant_glob(['executor/**/*.cc']),
76 use = 'BOOST BOOST_THREAD LIBEVENT LIBEVENT_PTHREADS LOG4CXX',
77 includes = "executor src",
78 )
79
Alexander Afanasyev3f101ec2013-01-17 16:58:03 -080080 scheduler = bld.objects (
81 target = "scheduler",
Alexander Afanasyev68f2a952013-01-08 14:34:16 -080082 features = ["cxx"],
Alexander Afanasyev3f101ec2013-01-17 16:58:03 -080083 source = bld.path.ant_glob(['scheduler/**/*.cc']),
Zhenkai Zhue8409422013-01-28 12:52:17 -080084 use = 'BOOST BOOST_THREAD LIBEVENT LIBEVENT_PTHREADS LOG4CXX executor',
Zhenkai Zhu1888f742013-01-28 12:47:33 -080085 includes = "scheduler executor src",
Alexander Afanasyev68f2a952013-01-08 14:34:16 -080086 )
87
Zhenkai Zhua7e3da72012-12-27 13:45:00 -080088 libccnx = bld (
Alexander Afanasyev3f101ec2013-01-17 16:58:03 -080089 target="ccnx",
90 features=['cxx'],
91 source = bld.path.ant_glob(['ccnx/**/*.cc', 'ccnx/**/*.cpp']),
Zhenkai Zhue8409422013-01-28 12:52:17 -080092 use = 'BOOST BOOST_THREAD SSL CCNX LOG4CXX scheduler executor',
Zhenkai Zhu1888f742013-01-28 12:47:33 -080093 includes = "ccnx src scheduler executor",
Alexander Afanasyevf2890632013-01-02 13:40:02 -080094 )
95
Alexander Afanasyev3f101ec2013-01-17 16:58:03 -080096 chornoshare = bld (
97 target="chronoshare",
98 features=['cxx'],
99 source = bld.path.ant_glob(['src/**/*.cc', 'src/**/*.cpp', 'src/**/*.proto']),
Alexander Afanasyevc507ac22013-01-21 16:01:58 -0800100 use = "BOOST BOOST_FILESYSTEM SQLITE3 LOG4CXX scheduler ccnx",
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800101 includes = "ccnx scheduler src executor",
Alexander Afanasyevee7e6132013-01-03 20:03:14 -0800102 )
Alexander Afanasyevb2fe74e2013-01-20 16:06:43 -0800103
Zhenkai Zhu369eff12013-02-05 15:43:49 -0800104 fs_watcher = bld (
105 target = "fs_watcher",
106 features = "qt4 cxx",
107 defines = "WAF",
108 source = bld.path.ant_glob(['fs-watcher/*.cc']),
109 use = "SQLITE3 LOG4CXX scheduler executor QTCORE",
110 includes = "fs-watcher scheduler executor src",
111 )
112
Alexander Afanasyevee7e6132013-01-03 20:03:14 -0800113 # Unit tests
114 if bld.env['TEST']:
115 unittests = bld.program (
116 target="unit-tests",
Zhenkai Zhud1756272013-02-01 17:02:18 -0800117 features = "qt4 cxx cxxprogram",
118 defines = "WAF",
Zhenkai Zhu369eff12013-02-05 15:43:49 -0800119 source = bld.path.ant_glob(['test/*.cc']),
120 use = 'BOOST_TEST BOOST_FILESYSTEM LOG4CXX SQLITE3 QTCORE QTGUI ccnx database fs_watcher chronoshare',
121 includes = "ccnx scheduler src executor gui fs-watcher",
Alexander Afanasyev4f62f442013-02-07 22:36:08 -0800122 install_prefix = None,
Alexander Afanasyevee7e6132013-01-03 20:03:14 -0800123 )
Alexander Afanasyevf2890632013-01-02 13:40:02 -0800124
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800125 app_plist = '''<?xml version="1.0" encoding="UTF-8"?>
126<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
127<plist version="0.9">
128<dict>
129 <key>CFBundlePackageType</key>
130 <string>APPL</string>
131 <key>CFBundleGetInfoString</key>
132 <string>Created by Waf</string>
133 <key>CFBundleSignature</key>
134 <string>????</string>
135 <key>NOTE</key>
136 <string>THIS IS A GENERATED FILE, DO NOT MODIFY</string>
137 <key>CFBundleExecutable</key>
138 <string>%s</string>
139 <key>LSUIElement</key>
140 <string>1</string>
141</dict>
142</plist>'''
143
Jared Lindblomdc845f02013-01-18 17:29:40 -0800144 qt = bld (
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800145 target = "ChronoShare",
146 mac_app = "ChronoShare.app",
147 mac_plist = app_plist % "ChronoShare",
Jared Lindblomdc845f02013-01-18 17:29:40 -0800148 features = "qt4 cxx cxxprogram",
149 defines = "WAF",
Alexander Afanasyev9ca444e2013-01-25 16:29:35 -0800150 source = bld.path.ant_glob(['gui/*.cpp', 'gui/*.cc', 'gui/*.qrc']),
Zhenkai Zhu369eff12013-02-05 15:43:49 -0800151 includes = "ccnx scheduler executor fs-watcher gui src . ",
152 use = "BOOST BOOST_FILESYSTEM SQLITE3 QTCORE QTGUI LOG4CXX fs_watcher ccnx database chronoshare"
Jared Lindblomdc845f02013-01-18 17:29:40 -0800153 )
Alexander Afanasyev548d38d2013-01-26 16:36:06 -0800154
155 cmdline = bld (
156 target = "csd",
157 features = "qt4 cxx cxxprogram",
158 defines = "WAF",
Zhenkai Zhu369eff12013-02-05 15:43:49 -0800159 source = "cmd/csd.cc",
160 includes = "ccnx scheduler executor gui fs-watcher src . ",
161 use = "BOOST BOOST_FILESYSTEM SQLITE3 QTCORE QTGUI LOG4CXX fs_watcher ccnx database chronoshare"
Alexander Afanasyev548d38d2013-01-26 16:36:06 -0800162 )
163
Alexander Afanasyeveb575e02013-01-26 17:14:51 -0800164 dump_db = bld (
165 target = "dump-db",
166 features = "cxx cxxprogram",
167 source = "cmd/dump-db.cc",
Zhenkai Zhu369eff12013-02-05 15:43:49 -0800168 includes = "ccnx scheduler executor gui fs-watcher src . ",
169 use = "BOOST BOOST_FILESYSTEM SQLITE3 QTCORE LOG4CXX fs_watcher ccnx database chronoshare"
Alexander Afanasyeveb575e02013-01-26 17:14:51 -0800170 )
171
172
Alexander Afanasyev548d38d2013-01-26 16:36:06 -0800173
174
175
176
177
178