8 lines
361 B
NSIS
8 lines
361 B
NSIS
; NSIS installer hooks — cai Microsoft Visual C++ Redistributable neu thieu
|
|
; (MSVCP140.dll missing). Dat vc_redist.x64.exe CANH tauri.conf.json
|
|
; (build_windows.ps1 tu tai ve neu chua co).
|
|
!macro customInstall
|
|
File "/oname=$PLUGINSDIR\vc_redist.x64.exe" "vc_redist.x64.exe"
|
|
ExecWait '"$PLUGINSDIR\vc_redist.x64.exe" /install /quiet /norestart'
|
|
!macroend
|