Fix for new libdcp API.
[libsub.git] / cscript
1 #
2 #    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3 #
4 #    This file is part of libsub.
5 #
6 #    libsub is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    libsub is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with libsub.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 import os
21
22 option_defaults = { 'force-cpp11': False }
23
24 def dependencies(target, options):
25     libdcp = ('libdcp', 'e5f89bf')
26     return (('asdcplib', 'carl'), libdcp)
27
28 def build(target, options):
29     cmd = './waf configure --prefix=%s' % target.directory
30     if target.platform == 'linux':
31         cmd += ' --static'
32         if target.distro == 'centos':
33             cmd += ' --disable-tests'
34     if target.debug:
35         cmd += ' --enable-debug'
36     if target.platform == 'windows':
37         cmd += ' --target-windows --disable-tests'
38
39     target.command(cmd)
40     target.command('./waf build install')
41
42 def make_doxygen(target):
43     os.makedirs('build/doc')
44     target.command('doxygen')
45     return os.path.abspath('build/doc/html')
46
47 def test(target, test):
48     if target.platform != 'windows':
49         target.set('LC_ALL', 'C')
50         if test is None:
51             target.command('run/tests')
52         else:
53             target.command('run/tests --run_test=%s' % test)