Remove DCP subtitle support.
[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 build(target, options):
25     cmd = './waf configure --prefix=%s' % target.directory
26     if target.platform == 'linux':
27         cmd += ' --static'
28         if target.distro == 'centos':
29             cmd += ' --disable-tests'
30     if target.debug:
31         cmd += ' --enable-debug'
32     if target.platform == 'windows':
33         cmd += f' --target-windows-{target.bits} --disable-tests'
34
35     target.command(cmd)
36     target.command('./waf build install')
37
38 def make_doxygen(target):
39     os.makedirs('build/doc')
40     target.command('doxygen')
41     return os.path.abspath('build/doc/html')
42
43 def test(target, test):
44     if target.platform != 'windows':
45         target.set('LC_ALL', 'C')
46         if test is None:
47             target.command('run/tests')
48         else:
49             target.command('run/tests --run_test=%s' % test)