X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=52d7e914d4889f4c43a009cb185d4259242d8184;hb=HEAD;hp=a236dd5aaacdcb11dd53e8232403002ebd9bced0;hpb=6b2a0be7d5129aafd5e17ff3bf80d69a1b14af5b;p=libdcp.git diff --git a/cscript b/cscript index a236dd5a..618b2fb9 100644 --- a/cscript +++ b/cscript @@ -35,15 +35,14 @@ import os import shutil def dependencies(target, options): - return (('libcxml', 'v0.17.5'), ('openjpeg', 'a1403c2'), ('asdcplib', 'ae75eb417d3804a6d723e2cf09647b54b15df5db')) + return (('libcxml', 'v0.17.6'), ('openjpeg', '925ca5192bb16d4f58a6fddc8b1623eced7f0203'), ('asdcplib', '8a4a2f25cac0c58aac1d4267facab20e5ec3b57f')) def build(target, options): - cmd = './waf configure --disable-examples --disable-benchmarks --prefix=%s' % target.directory - cmd += ' --jpeg=%s' % options['jpeg'] + cmd = './waf configure --disable-examples --disable-dumpimage --disable-benchmarks --prefix=%s' % target.directory if target.platform == 'linux': cmd += ' --static' - if not (target.distro == 'ubuntu' and target.version == '18.04'): - # We only build tests on Ubuntu 18.04 + if target.distro != 'ubuntu' or not target.version in ('16.04', '22.04'): + # We only build tests on Ubuntu 16.04 and 22.04 cmd += ' --disable-tests' elif target.platform == 'windows': cmd += f' --target-windows-{target.bits}' @@ -82,6 +81,8 @@ def make_doxygen(target): def test(target, options, test): target.set('LC_ALL', 'C') cmd = 'run\\tests ' if target.platform == 'windows' else 'run/tests ' + if target.environment_prefix: + cmd += '-e %s' % target.environment_prefix if test is not None: cmd += '-t %s' % test target.command(cmd)