Some platforms don't even have libxml++ version defines.
[libcxml.git] / cscript
1 # -*- mode: python -*-
2 #
3 #    Copyright (C) 2016-2020 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     elif target.platform == 'windows':
32         cmd += ' --target-windows'
33
34     target.command(cmd)
35     target.command('./waf build install')
36
37 def test(target, test):
38     if target.platform != 'windows':
39         target.set('LC_ALL', 'C')
40         target.command('./run-tests.sh')
41
42 def make_doxygen(target):
43     os.makedirs('build/doc')
44     target.command('doxygen')
45     return os.path.abspath('build/doc/html')