ANSI targets are deprecated, force the important examples to use Unicode.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7080 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2019-02-11 16:04:47 +00:00
parent 978ac79a5d
commit bd5d47cbae
8 changed files with 21 additions and 6 deletions

View file

@ -13,6 +13,12 @@ Name "Example2"
; The file to write
OutFile "example2.exe"
; Request application privileges for Windows Vista
RequestExecutionLevel admin
; Build Unicode installer
Unicode True
; The default installation directory
InstallDir $PROGRAMFILES\Example2
@ -20,9 +26,6 @@ InstallDir $PROGRAMFILES\Example2
; overwrite the old one automatically)
InstallDirRegKey HKLM "Software\NSIS_Example2" "Install_Dir"
; Request application privileges for Windows Vista
RequestExecutionLevel admin
;--------------------------------
; Pages