Add some more conversions.
[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 build(target, options):
24     cmd = './waf configure --prefix=%s' % target.directory
25     if target.platform == 'linux':
26         cmd += ' --static'
27         if target.distro == 'centos':
28             # Centos builds using static boost, which means tests don't
29             # build as test/tests.cc defines BOOST_TEST_DYN_LINK
30             cmd += ' --disable-tests'
31             if target.version == '7':
32                 # Centos 7 ships with glibmm 2.50.0 which requires C++11
33                 # but its compiler (gcc 4.8.5) defaults to C++97.  Go figure.
34                 # I worry that this will cause ABI problems but I don't have
35                 # a better solution.
36                 cmd += ' --force-cpp11'
37         if target.distro == 'mageia' and target.version == '6':
38             # Mageia 6 pulls the same stunt except it's libxml++ that requires C++11
39             cmd += ' --force-cpp11'
40     elif target.platform == 'windows':
41         # Similarly with Windows
42         cmd += ' --force-cpp11 --target-windows'
43     target.command(cmd)
44     target.command('./waf build install')
45
46 def test(target, test):
47     if target.platform != 'windows':
48         target.set('LC_ALL', 'C')
49         target.command('./run-tests.sh')
50
51 def make_doxygen(target):
52     os.makedirs('build/doc')
53     target.command('doxygen')
54     return os.path.abspath('build/doc/html')