Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
Alexander Afanasyev | 71b43e7 | 2012-12-27 01:03:43 -0800 | [diff] [blame] | 3 | VERSION='0.1' |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 4 | APPNAME='chronoshare' |
Alexander Afanasyev | d09871f | 2013-01-04 22:36:37 -0800 | [diff] [blame] | 5 | CCNXLIB='ccnxx' |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 6 | |
| 7 | from waflib import Build, Logs |
| 8 | |
| 9 | def options(opt): |
| 10 | opt.add_option('--debug',action='store_true',default=False,dest='debug',help='''debugging mode''') |
| 11 | opt.add_option('--test', action='store_true',default=False,dest='_test',help='''build unit tests''') |
Alexander Afanasyev | 71b43e7 | 2012-12-27 01:03:43 -0800 | [diff] [blame] | 12 | opt.add_option('--yes',action='store_true',default=False) # for autoconf/automake/make compatibility |
Alexander Afanasyev | 5f9d09e | 2012-12-28 19:43:08 -0800 | [diff] [blame] | 13 | |
Alexander Afanasyev | 6f70a0f | 2013-01-02 20:44:09 -0800 | [diff] [blame] | 14 | opt.load('compiler_cxx boost ccnx protoc ice_cxx') |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 15 | |
| 16 | def configure(conf): |
| 17 | conf.load("compiler_cxx") |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 18 | |
Alexander Afanasyev | f289063 | 2013-01-02 13:40:02 -0800 | [diff] [blame] | 19 | conf.define ("CHRONOSHARE_VERSION", VERSION) |
| 20 | |
Alexander Afanasyev | 71b43e7 | 2012-12-27 01:03:43 -0800 | [diff] [blame] | 21 | conf.check_cfg(package='sqlite3', args=['--cflags', '--libs'], uselib_store='SQLITE3', mandatory=True) |
| 22 | |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 23 | if not conf.check_cfg(package='openssl', args=['--cflags', '--libs'], uselib_store='SSL', mandatory=False): |
Alexander Afanasyev | 5f9d09e | 2012-12-28 19:43:08 -0800 | [diff] [blame] | 24 | libcrypto = conf.check_cc(lib='crypto', |
| 25 | header_name='openssl/crypto.h', |
| 26 | define_name='HAVE_SSL', |
| 27 | uselib_store='SSL') |
| 28 | else: |
| 29 | conf.define ("HAVE_SSL", 1) |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 30 | if not conf.get_define ("HAVE_SSL"): |
| 31 | conf.fatal ("Cannot find SSL libraries") |
| 32 | |
Zhenkai Zhu | 0a17aea | 2012-12-28 14:30:22 -0800 | [diff] [blame] | 33 | conf.load ('ccnx') |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 34 | conf.load('boost') |
| 35 | |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame] | 36 | conf.check_boost(lib='system test iostreams filesystem regex thread') |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 37 | |
Alexander Afanasyev | 71b43e7 | 2012-12-27 01:03:43 -0800 | [diff] [blame] | 38 | boost_version = conf.env.BOOST_VERSION.split('_') |
| 39 | if int(boost_version[0]) < 1 or int(boost_version[1]) < 46: |
| 40 | Logs.error ("Minumum required boost version is 1.46") |
| 41 | return |
| 42 | |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 43 | conf.check_ccnx (path=conf.options.ccnx_dir) |
| 44 | |
| 45 | if conf.options.debug: |
| 46 | conf.define ('_DEBUG', 1) |
Alexander Afanasyev | d09871f | 2013-01-04 22:36:37 -0800 | [diff] [blame] | 47 | conf.env.append_value('CXXFLAGS', ['-O0', '-Wall', '-Wno-unused-variable', '-fcolor-diagnostics', '-g3']) |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 48 | else: |
| 49 | conf.env.append_value('CXXFLAGS', ['-O3', '-g']) |
| 50 | |
| 51 | if conf.options._test: |
Alexander Afanasyev | 72ac219 | 2013-01-03 19:33:43 -0800 | [diff] [blame] | 52 | conf.env.TEST = 1 |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 53 | |
Alexander Afanasyev | 5f9d09e | 2012-12-28 19:43:08 -0800 | [diff] [blame] | 54 | conf.load('protoc') |
Alexander Afanasyev | 8811b35 | 2013-01-02 12:51:15 -0800 | [diff] [blame] | 55 | conf.load('ice_cxx') |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 56 | |
Alexander Afanasyev | 71b43e7 | 2012-12-27 01:03:43 -0800 | [diff] [blame] | 57 | conf.write_config_header('src/config.h') |
| 58 | |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 59 | def build (bld): |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame] | 60 | common = bld.objects ( |
| 61 | target = "common", |
| 62 | features = ["cxx"], |
| 63 | source = ['src/hash-helper.cc', |
| 64 | 'src/chronoshare-client.ice', |
| 65 | ], |
| 66 | use = 'BOOST', |
| 67 | includes = ['include', 'src'], |
| 68 | ) |
| 69 | |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 70 | libccnx = bld ( |
Zhenkai Zhu | bad089c | 2012-12-28 10:28:27 -0800 | [diff] [blame] | 71 | target=CCNXLIB, |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 72 | features=['cxx', 'cxxshlib'], |
| 73 | source = [ |
| 74 | 'src/ccnx-wrapper.cpp', |
Zhenkai Zhu | bad089c | 2012-12-28 10:28:27 -0800 | [diff] [blame] | 75 | 'src/ccnx-pco.cpp', |
Zhenkai Zhu | 974c5a6 | 2012-12-28 14:15:30 -0800 | [diff] [blame] | 76 | 'src/ccnx-closure.cpp', |
Zhenkai Zhu | d492431 | 2012-12-28 11:35:12 -0800 | [diff] [blame] | 77 | 'src/ccnx-tunnel.cpp', |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame] | 78 | 'src/object-db.cc', |
| 79 | 'src/object-manager.cc', |
Zhenkai Zhu | f47109b | 2013-01-02 19:41:34 -0800 | [diff] [blame] | 80 | 'src/ccnx-name.cpp', |
Zhenkai Zhu | a6472e0 | 2013-01-06 14:33:37 -0800 | [diff] [blame] | 81 | 'src/ccnx-selectors.cpp', |
Zhenkai Zhu | a7e3da7 | 2012-12-27 13:45:00 -0800 | [diff] [blame] | 82 | ], |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame] | 83 | use = 'BOOST BOOST_THREAD BOOST_FILESYSTEM SSL SQLITE3 CCNX common', |
Alexander Afanasyev | f289063 | 2013-01-02 13:40:02 -0800 | [diff] [blame] | 84 | includes = ['include', 'src'], |
| 85 | ) |
| 86 | |
Alexander Afanasyev | ee7e613 | 2013-01-03 20:03:14 -0800 | [diff] [blame] | 87 | database = bld.objects ( |
| 88 | target = "database", |
| 89 | features = ["cxx"], |
| 90 | source = [ |
| 91 | 'src/db-helper.cc', |
| 92 | 'src/sync-log.cc', |
| 93 | 'src/action-log.cc', |
| 94 | 'src/action-item.proto', |
| 95 | 'src/sync-state.proto', |
| 96 | ], |
| 97 | use = "BOOST SQLITE3 SSL common", |
| 98 | includes = ['include', 'src'], |
| 99 | ) |
| 100 | |
| 101 | # Unit tests |
| 102 | if bld.env['TEST']: |
| 103 | unittests = bld.program ( |
| 104 | target="unit-tests", |
| 105 | source = bld.path.ant_glob(['test/**/*.cc']), |
| 106 | features=['cxx', 'cxxprogram'], |
Alexander Afanasyev | d09871f | 2013-01-04 22:36:37 -0800 | [diff] [blame] | 107 | use = 'BOOST_TEST ccnxx database', |
Alexander Afanasyev | ee7e613 | 2013-01-03 20:03:14 -0800 | [diff] [blame] | 108 | includes = ['include', 'src'], |
| 109 | ) |
Alexander Afanasyev | f289063 | 2013-01-02 13:40:02 -0800 | [diff] [blame] | 110 | |
| 111 | client = bld ( |
| 112 | target="cs-client", |
| 113 | features=['cxx', 'cxxprogram'], |
Alexander Afanasyev | 5e9e46e | 2013-01-02 14:12:50 -0800 | [diff] [blame] | 114 | source = ['client/client.cc', |
Alexander Afanasyev | f289063 | 2013-01-02 13:40:02 -0800 | [diff] [blame] | 115 | ], |
| 116 | use = "BOOST CCNX SSL ICE common", |
| 117 | includes = ['include', 'src'], |
| 118 | ) |
| 119 | |
| 120 | daemon = bld ( |
| 121 | target="cs-daemon", |
Alexander Afanasyev | 71b43e7 | 2012-12-27 01:03:43 -0800 | [diff] [blame] | 122 | features=['cxx', 'cxxprogram'], |
| 123 | # source = bld.path.ant_glob(['src/**/*.cc']), |
Alexander Afanasyev | 5e9e46e | 2013-01-02 14:12:50 -0800 | [diff] [blame] | 124 | source = ['daemon/daemon.cc', |
| 125 | 'daemon/notify-i.cc', |
Alexander Afanasyev | f289063 | 2013-01-02 13:40:02 -0800 | [diff] [blame] | 126 | ], |
Alexander Afanasyev | d09871f | 2013-01-04 22:36:37 -0800 | [diff] [blame] | 127 | use = "BOOST CCNX SSL SQLITE3 ICE common database ccnxx", |
Alexander Afanasyev | 71b43e7 | 2012-12-27 01:03:43 -0800 | [diff] [blame] | 128 | includes = ['include', 'src'], |
| 129 | ) |