Fix previous.
[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', 'v0.0.5'),)
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.version == '7':
35                 # Centos 7 ships with glibmm 2.50.0 which requires C++11
36                 # but its compiler (gcc 4.8.5) defaults to C++97.  Go figure.
37                 # I worry that this will cause ABI problems but I don't have
38                 # a better solution.
39                 cmd += ' --force-cpp11'
40         if target.distro == 'mageia' and target.version == '6':
41             # Mageia 6 pulls the same stunt except it's libxml++ that requires C++11
42             cmd += ' --force-cpp11'
43     elif target.platform == 'windows':
44         # Similarly with Windows
45         cmd += ' --force-cpp11 --target-windows'
46     target.command(cmd)
47     target.command('./waf build install')
48
49 def test(target, test):
50     if target.platform != 'windows':
51         target.set('LC_ALL', 'C')
52         target.command('./run-tests.sh')
53
54 def make_doxygen(target):
55     os.makedirs('build/doc')
56     target.command('doxygen')
57     return os.path.abspath('build/doc/html')