Skip to content

Commit

Permalink
Fix thed VC redist (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Aug 13, 2016
1 parent a43e0f7 commit 4b3a585
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ def main():

# Since windeployqt doesn't actually work with --compiler-runtime,
# copy it ourselves
plat = {32: 'x86', 64: 'x64'}[bits]
redist_path = os.path.join(
'c:/', 'Program Files (x86)', 'Microsoft Visual Studio 14.0', 'VC',
'redist', 'x{}'.format(bits), 'Microsoft.VC140.CRT'
'redist', plat, 'Microsoft.VC140.CRT'
)
redist_files = [
'msvcp140.dll',
Expand Down

0 comments on commit 4b3a585

Please sign in to comment.