2003-12-14 00:18:16 +00:00
|
|
|
name "Test"
|
|
|
|
outfile "test.exe"
|
|
|
|
silentinstall silent
|
|
|
|
|
|
|
|
!include "selectlib.nsh"
|
|
|
|
|
|
|
|
Section
|
2003-12-14 00:19:48 +00:00
|
|
|
${SELECT} "test1"
|
|
|
|
${CASE} "test1"
|
2003-12-14 00:18:16 +00:00
|
|
|
MessageBox MB_OK "case test1"
|
2003-12-14 00:19:48 +00:00
|
|
|
${CASE} "test 2;test3"
|
2003-12-14 00:18:16 +00:00
|
|
|
MessageBox MB_OK "case test2 or test3"
|
2003-12-14 00:19:48 +00:00
|
|
|
${CASE_ELSE}
|
2003-12-14 00:18:16 +00:00
|
|
|
MessageBox MB_OK "case else"
|
2003-12-14 00:19:48 +00:00
|
|
|
${SELECTEND}
|
2003-12-14 00:18:16 +00:00
|
|
|
SectionEnd
|