Skip to content

Commit

Permalink
Update install.nsi: install x64/WeaselDeployer.exe and x64/rime.dll o…
Browse files Browse the repository at this point in the history
…nly when target system is 64 bit.
  • Loading branch information
fxliang committed Oct 13, 2023
1 parent 14e82b3 commit 519a068
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions output/install.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,11 @@ program_files:
SetOutPath $INSTDIR\data\preview
File "data\preview\*.png"
; WeaselDeployerx64 files
SetOutPath $INSTDIR\x64
File /nonfatal "x64\WeaselDeployer.exe"
File /nonfatal "x64\rime.dll"
${If} ${RunningX64}
SetOutPath $INSTDIR\x64
File /nonfatal "x64\WeaselDeployer.exe"
File /nonfatal "x64\rime.dll"
${EndIf}

SetOutPath $INSTDIR

Expand Down

0 comments on commit 519a068

Please sign in to comment.