Fix previous.
[libcxml.git] / wscript
1 # -*- mode: python -*-
2 #
3 #    Copyright (C) 2016-2017 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 from waflib import Context
22
23 APPNAME = 'libcxml'
24 VERSION = '0.15.4devel'
25 API_VERSION = '0.0.0'
26
27 def options(opt):
28     opt.load('compiler_cxx')
29     opt.add_option('--target-windows', action='store_true', default=False, help='set up to do a cross-compile to Windows')
30     opt.add_option('--static', action='store_true', default=False, help='build statically')
31     opt.add_option('--disable-tests', action='store_true', default=False, help='disable building of tests')
32     opt.add_option('--force-cpp11', action='store_true', default=False, help='force use of C++11')
33
34 def configure(conf):
35     conf.load('compiler_cxx')
36     conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-O2'])
37     if conf.options.force_cpp11:
38         conf.env.append_value('CXXFLAGS', ['-std=c++11', '-DBOOST_NO_CXX11_SCOPED_ENUMS'])
39
40     conf.env.TARGET_WINDOWS = conf.options.target_windows
41     conf.env.STATIC = conf.options.static
42     conf.env.DISABLE_TESTS = conf.options.disable_tests
43     conf.env.API_VERSION = API_VERSION
44
45     if conf.options.target_windows:
46         boost_lib_suffix = '-mt'
47     else:
48         boost_lib_suffix = ''
49
50     conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='LIBXML++', mandatory=True)
51     conf.check_cfg(package='locked_sstream', args='--cflags --libs', uselib_store='LOCKED_SSTREAM', mandatory=True)
52
53     conf.check_cxx(fragment="""
54                    #include <boost/filesystem.hpp>\n
55                    int main() { boost::filesystem::copy_file ("a", "b"); }\n
56                    """,
57                    msg='Checking for boost filesystem library',
58                    libpath='/usr/local/lib',
59                    lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
60                    uselib_store='BOOST_FILESYSTEM')
61
62     if not conf.options.disable_tests:
63         conf.check_cxx(fragment="""
64                                   #define BOOST_TEST_MODULE Config test\n
65                                   #include <boost/test/unit_test.hpp>\n
66                                   int main() {}
67                                   """,
68                                   msg='Checking for boost unit testing library',
69                                   lib=['boost_unit_test_framework%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
70                                   uselib_store='BOOST_TEST')
71
72         conf.recurse('test')
73
74 def build(bld):
75
76     bld(source='libcxml.pc.in',
77         version=VERSION,
78         includedir='%s/include' % bld.env.PREFIX,
79         libs="-L${libdir} -lcxml",
80         install_path='${LIBDIR}/pkgconfig')
81
82     bld.recurse('src')
83     if not bld.env.DISABLE_TESTS:
84         bld.recurse('test')