summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
Diffstat (limited to 'cscript')
-rw-r--r--cscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/cscript b/cscript
index 1f2ec62a9..cd74e8ef5 100644
--- a/cscript
+++ b/cscript
@@ -362,7 +362,10 @@ def dependencies(target, options):
deps = []
# Let's use C++11 mode if we can
- cpp_lib_options = {'force-cpp11': True} if target.platform == 'osx' and target.bits == 64 else {}
+ cpp_lib_options = {'force-cpp11': True} if (
+ (target.platform == 'osx' and target.bits == 64) or
+ (target.platform == 'windows')
+ else {}
deps.append(('libdcp', None, cpp_lib_options))
deps.append(('libsub', None, cpp_lib_options))