Fix installer missing dlls

This commit is contained in:
K4sum1 2025-03-24 19:13:51 -07:00
commit 8840299c26
8 changed files with 14 additions and 3 deletions

View file

@ -15,7 +15,7 @@ if CONFIG['ENABLE_TESTS']:
NO_PGO = True
if CONFIG['WIN32_REDIST_DIR'] and CONFIG['COMPILE_ENVIRONMENT']:
for f in ['MSVC_C_RUNTIME_DLL', 'MSVC_CXX_RUNTIME_DLL']:
for f in ['MSVC_C_RUNTIME_DLL', 'MSVC_CMP_RUNTIME_DLL', 'MSVC_CXX_RUNTIME_DLL']:
FINAL_TARGET_FILES += [
'%%%s/%s' % (CONFIG['WIN32_REDIST_DIR'], CONFIG[f])
]