Modify KDM naming test to use shorter path names on Windows.
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index 293d69b7ccb1b41f5b8c702fb05ded03cb28e3b0..ce775aabc90947f6539891ed9ae846e2c0840af7 100644 (file)
--- a/cscript
+++ b/cscript
@@ -375,8 +375,8 @@ def dependencies(target, options):
             (target.platform == 'osx' and target.bits == 64) or
             (target.platform == 'windows')) else {}
 
-    deps.append(('libdcp', '9d1c856', cpp_lib_options))
-    deps.append(('libsub', '1b52b38', cpp_lib_options))
+    deps.append(('libdcp', 'b4e1d9f', cpp_lib_options))
+    deps.append(('libsub', 'b6377ae', cpp_lib_options))
     deps.append(('leqm-nrt', 'carl'))
     deps.append(('rtaudio', 'carl'))
     # We get our OpenSSL libraries from the environment, but we
@@ -395,8 +395,9 @@ def configure_options(target, options):
     opt = ' --warnings-are-errors'
 
     if not ((target.platform == 'linux' and target.distro == 'ubuntu' and target.version == '18.04') or
-            (target.platform == 'osx')):
-        # Currently we only build tests on Ubuntu 18.04 and macOS
+            (target.platform == 'osx') or
+            (target.platform == 'windows')):
+        # Currently we only build tests on Ubuntu 18.04, macOS and Windows
         opt += ' --disable-tests'
 
     if target.debug: