X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=6a217e3834d1ab00101cebac16b01087606a75ec;hb=5b01b1cfd494bcf9e7885482b510bbf6acfaadef;hp=6a1f7db41b1595655503709331ebd800335f7421;hpb=8a509f2fc2f5d3010dcc9a8edb08e6d047b26a20;p=libsub.git diff --git a/cscript b/cscript index 6a1f7db..6a217e3 100644 --- a/cscript +++ b/cscript @@ -22,8 +22,7 @@ import os option_defaults = { 'force-cpp11': False } def dependencies(target, options): - libdcp = ('libdcp', 'ac98ff1') - return (('asdcplib', 'carl'), libdcp) + return (('asdcplib', '825e47522e3ae179a7820b2665c9de299b34494b'), ('libdcp', 'v1.8.30')) def build(target, options): cmd = './waf configure --prefix=%s' % target.directory @@ -34,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')