Fix dependency specification.
[libcxml.git] / cscript
1 # -*- mode: python -*-
2 #
3 #    Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
4 #
5 #    This file is part of libcxml.
6 #
7 #    libcxml is free software; you can redistribute it and/or modify
8 #    it under the terms of the GNU General Public License as published by
9 #    the Free Software Foundation; either version 2 of the License, or
10 #    (at your option) any later version.
11 #
12 #    libcxml is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU General Public License for more details.
16 #
17 #    You should have received a copy of the GNU General Public License
18 #    along with libcxml.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 import os
22
23 def dependencies(target):
24     return (('locked_sstream', None),)
25
26 def build(target, options):
27     cmd = './waf configure --prefix=%s' % target.directory
28     if target.platform == 'linux':
29         cmd += ' --static'
30         if target.distro == 'centos':
31             # Centos builds using static boost, which means tests don't
32             # build as test/tests.cc defines BOOST_TEST_DYN_LINK
33             cmd += ' --disable-tests'
34         if (target.distro == 'debian' and target.version == 'unstable') or (target.distro == 'fedora' and target.version == '23'):
35             target.append_with_space('CXXFLAGS', '-std=c++11')
36     elif target.platform == 'windows':
37         cmd += ' --target-windows'
38     target.command(cmd)
39     target.command('./waf build install')
40
41 def test(target):
42     if target.platform != 'windows':
43         target.set('LC_ALL', 'C')
44         target.command('./run-tests.sh')
45
46 def make_doxygen(target):
47     os.makedirs('build/doc')
48     target.command('doxygen')
49     return os.path.abspath('build/doc/html')