blob: 28c51bece5fcab714e8e40f55ca50765c9848a94 [file] [log] [blame]
Chengyu Faneb0422c2015-03-04 16:34:14 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2
3"""
4Copyright (c) 2014-2015, Regents of the University of California,
5 Arizona Board of Regents,
6 Colorado State University,
7 University Pierre & Marie Curie, Sorbonne University,
8 Washington University in St. Louis,
9 Beijing Institute of Technology
10
11This file is part of NFD (Named Data Networking Forwarding Daemon).
12See AUTHORS.md for complete list of NFD authors and contributors.
13
14NFD is free software: you can redistribute it and/or modify it under the terms
15of the GNU General Public License as published by the Free Software Foundation,
16either version 3 of the License, or (at your option) any later version.
17
18NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20PURPOSE. See the GNU General Public License for more details.
21
22You should have received a copy of the GNU General Public License along with
23NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24"""
25
26
27VERSION='0.1'
28APPNAME='ndn-atmos'
29
30from waflib import Configure, Utils, Logs, Context
31import os
32
33def options(opt):
34 opt.load(['compiler_cxx', 'gnu_dirs'])
35
36 opt.load(['default-compiler-flags', 'boost'],
37 tooldir=['.waf-tools'])
38
39 opt = opt.add_option_group('ndn-atmos Options')
40
41 opt.add_option('--with-tests', action='store_true', default=False,
42 dest='with_tests', help='''build unit tests''')
43
44def configure(conf):
45 conf.load(['compiler_cxx', 'default-compiler-flags', 'boost', 'gnu_dirs'])
46
47 conf.find_program('bash', var='BASH')
48
49 if not os.environ.has_key('PKG_CONFIG_PATH'):
50 os.environ['PKG_CONFIG_PATH'] = ':'.join([
51 '/usr/local/lib/pkgconfig',
Chengyu Fan27887552015-03-26 17:12:00 -060052 '/usr/local/lib32/pkgconfig',
53 '/usr/local/lib64/pkgconfig',
Chengyu Faneb0422c2015-03-04 16:34:14 -070054 '/opt/local/lib/pkgconfig'])
55
56 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
57 uselib_store='NDN_CXX', mandatory=True)
58
Chengyu Fan8b92f122015-03-09 22:13:36 -060059 conf.check_cfg(package='ChronoSync', args=['ChronoSync >= 0.1', '--cflags', '--libs'],
60 uselib_store='SYNC', mandatory=True)
61
62 conf.check_cfg(package='jsoncpp', args=['--cflags', '--libs'],
63 uselib_store='JSON', mandatory=True)
64
Chengyu Fan27887552015-03-26 17:12:00 -060065 conf.check_cfg(path='mysql_config', args=['--cflags', '--libs'], package='',
66 uselib_store='MYSQL', mandatory=True)
Chengyu Faneb0422c2015-03-04 16:34:14 -070067
68 boost_libs = 'system random thread filesystem'
69
70 if conf.options.with_tests:
71 conf.env['WITH_TESTS'] = 1
72 conf.define('WITH_TESTS', 1);
73 boost_libs += ' unit_test_framework'
74
75 conf.check_boost(lib=boost_libs, mandatory=True)
76 if conf.env.BOOST_VERSION_NUMBER < 104800:
77 Logs.error("Minimum required boost version is 1.48.0")
78 Logs.error("Please upgrade your distribution or install custom boost libraries" +
79 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
80 return
81
Chengyu Fanb25835b2015-04-28 17:09:35 -060082 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn-atmos/catalog.conf' % conf.env['SYSCONFDIR'])
83
84 conf.write_config_header('config.hpp')
Chengyu Faneb0422c2015-03-04 16:34:14 -070085
86def build (bld):
Chengyu Fan8b92f122015-03-09 22:13:36 -060087 ndn_atmos_objects = bld(
88 target='ndn_atmos_objects',
89 name='ndn_atmos_objects',
90 features='cxx',
Chengyu Fan27887552015-03-26 17:12:00 -060091 source=bld.path.ant_glob(['catalog/src/**/*.cpp'],
Chengyu Fan8b92f122015-03-09 22:13:36 -060092 excl=['catalog/src/main.cpp']),
Chengyu Fanc7b87ad2015-07-09 16:44:37 -060093 use='NDN_CXX BOOST JSON MYSQL SYNC',
Chengyu Fan8b92f122015-03-09 22:13:36 -060094 includes='catalog/src .',
95 export_includes='catalog/src .'
96 )
97
Chengyu Faneb0422c2015-03-04 16:34:14 -070098 bld(
Chengyu Fanb25835b2015-04-28 17:09:35 -060099 target='bin/atmos-catalog',
Chengyu Fan8b92f122015-03-09 22:13:36 -0600100 features='cxx cxxprogram',
101 source='catalog/src/main.cpp',
102 use='ndn_atmos_objects'
Chengyu Faneb0422c2015-03-04 16:34:14 -0700103 )
104
Chengyu Fanb25835b2015-04-28 17:09:35 -0600105 bld.recurse('tools')
106
Chengyu Faneb0422c2015-03-04 16:34:14 -0700107 # Catalog unit tests
108 if bld.env['WITH_TESTS']:
109 bld.recurse('catalog/tests')
Chengyu Fanb25835b2015-04-28 17:09:35 -0600110
111 bld(
112 features="subst",
113 source='catalog.conf.sample.in',
114 target='catalog.conf.sample',
115 install_path="${SYSCONFDIR}/ndn-atmos"
116 )