
- Added simplified macros and removed NAME requirement git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3273 212acab6-be3b-0410-9dea-997c60f758d6
16 lines
No EOL
312 B
NSIS
16 lines
No EOL
312 B
NSIS
name "Test"
|
|
outfile "test.exe"
|
|
silentinstall silent
|
|
|
|
!include "selectlib.nsh"
|
|
|
|
Section
|
|
${SELECT} "test1"
|
|
${CASE} "test1"
|
|
MessageBox MB_OK "case test1"
|
|
${CASE} "test 2;test3"
|
|
MessageBox MB_OK "case test2 or test3"
|
|
${CASE_ELSE}
|
|
MessageBox MB_OK "case else"
|
|
${SELECTEND}
|
|
SectionEnd |