X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=6a217e3834d1ab00101cebac16b01087606a75ec;hb=5b01b1cfd494bcf9e7885482b510bbf6acfaadef;hp=ccd7da50ce9cd1a01c35ab7bd668cda1ac330055;hpb=e72a1a09cd65d7ea07b5993cce052b5160073531;p=libsub.git diff --git a/cscript b/cscript index ccd7da5..6a217e3 100644 --- a/cscript +++ b/cscript @@ -22,7 +22,7 @@ import os option_defaults = { 'force-cpp11': False } def dependencies(target, options): - return (('asdcplib', 'bb09615'), ('libdcp', 'v1.8.0')) + return (('asdcplib', '825e47522e3ae179a7820b2665c9de299b34494b'), ('libdcp', 'v1.8.30')) def build(target, options): cmd = './waf configure --prefix=%s' % target.directory @@ -33,7 +33,7 @@ def build(target, options): if target.debug: cmd += ' --enable-debug' if target.platform == 'windows': - cmd += ' --target-windows --disable-tests' + cmd += f' --target-windows-{target.bits} --disable-tests' target.command(cmd) target.command('./waf build install')