We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb50fbf commit 7f637f9Copy full SHA for 7f637f9
1 file changed
make/windows.py
@@ -9,7 +9,7 @@
9
import os
10
import distutils
11
import msilib
12
-
+import shutil
13
import cx_Freeze
14
from cx_Freeze import Executable
15
@@ -62,6 +62,8 @@ def run(self):
62
remove(build_dir + 'lib/sdl2dll/dll/libopusfile-0.dll')
63
remove(build_dir + 'lib/sdl2dll/dll/libogg-0.dll')
64
remove(build_dir + 'lib/sdl2dll/dll/libmodplug-1.dll')
65
+ # add msvcr - we can't count on cx_freeze to do it even with include_msvcr=True set
66
+ shutil.copy('c:/windows/system32/vcruntime140.dll', build_dir)
67
68
69
class BdistMsiCommand(cx_Freeze.bdist_msi):
0 commit comments