X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=1196c8cd0643318a9e3bf1425af5e4807939b808;hb=4a2b319516ba5deda908e9778ce8880e421d709e;hp=6a1f7db41b1595655503709331ebd800335f7421;hpb=8a509f2fc2f5d3010dcc9a8edb08e6d047b26a20;p=libsub.git diff --git a/cscript b/cscript index 6a1f7db..1196c8c 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', 'ee04871698c10aa4d9736d3457bf74ff68a07b5d'), ('libdcp', '6de2bb3751b449abf06d44e4dda5e41b66df3f62')) 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')