Throw a specific exception when no WEBVTT header is found.
[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     return (('asdcplib', 'bb09615'), ('libdcp', '50346ba'))
26
27 def build(target, options):
28     cmd = './waf configure --prefix=%s' % target.directory
29     if target.platform == 'linux':
30         cmd += ' --static'
31         if target.distro == 'centos':
32             cmd += ' --disable-tests'
33     if target.debug:
34         cmd += ' --enable-debug'
35     if target.platform == 'windows':
36         cmd += ' --target-windows --disable-tests'
37
38     target.command(cmd)
39     target.command('./waf build install')
40
41 def make_doxygen(target):
42     os.makedirs('build/doc')
43     target.command('doxygen')
44     return os.path.abspath('build/doc/html')
45
46 def test(target, test):
47     if target.platform != 'windows':
48         target.set('LC_ALL', 'C')
49         if test is None:
50             target.command('run/tests')
51         else:
52             target.command('run/tests --run_test=%s' % test)