From: Carl Hetherington Date: Thu, 22 Nov 2012 21:07:52 +0000 (+0000) Subject: Add windows runtime link that seems to be needed with newer mingw. X-Git-Tag: v0.25~1 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=357e04626b8e682bc621f98e5976c95bf2f71364;p=libdcp.git Add windows runtime link that seems to be needed with newer mingw. --- diff --git a/wscript b/wscript index 8de94321..b1fbc4b4 100644 --- a/wscript +++ b/wscript @@ -19,6 +19,7 @@ def configure(conf): if conf.options.target_windows: conf.env.append_value('CXXFLAGS', '-DLIBDCP_WINDOWS') + conf.env.append_value('LIB', 'msvcr100') else: conf.env.append_value('CXXFLAGS', '-DLIBDCP_POSIX')