Skip to content

Commit

Permalink
-update: installer
Browse files Browse the repository at this point in the history
Updates the NSIS installer script
  • Loading branch information
ZeromusXYZ committed Oct 25, 2022
1 parent d0b323b commit ce8d2f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions viewedsetup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;--------------------------------

; The name of the installer
Name "VieweD Setup"
Name "VieweD"

; The file to write
OutFile "viewedsetup.exe"
Expand Down Expand Up @@ -39,11 +39,11 @@ Section "" ;No components page, name is not important

; Extra library files
; x64
SetOutPath $INSTDIR\runtimes\win-x64\native
File runtimes\win-x64\native\*.*
SetOutPath $INSTDIR\x64
File x64\*.*
; x86
SetOutPath $INSTDIR\runtimes\win-x86\native
File runtimes\win-x86\native\*.*
SetOutPath $INSTDIR\x86
File x86\*.*

; Program Data

Expand Down

0 comments on commit ce8d2f8

Please sign in to comment.