2003-12-14 00:22:02 +00:00
|
|
|
Name "test"
|
|
|
|
OutFile "test.exe"
|
|
|
|
SilentInstall silent
|
2003-12-14 00:18:16 +00:00
|
|
|
|
2003-12-14 00:22:02 +00:00
|
|
|
!include "logiclib.nsh"
|
2003-12-14 00:18:16 +00:00
|
|
|
|
|
|
|
Section
|
2003-12-14 00:22:02 +00:00
|
|
|
${IF} "test" = "test2"
|
|
|
|
MessageBox MB_OK "test"
|
|
|
|
${ELSE}
|
|
|
|
${IF} "test" = "test"
|
|
|
|
${SELECT} 5
|
|
|
|
${CASE} 4
|
|
|
|
MessageBox MB_OK "case 4"
|
|
|
|
${CASE} 5;6
|
|
|
|
MessageBox MB_OK "case 5 or 6"
|
|
|
|
${CASE_ELSE}
|
|
|
|
MessageBox MB_OK "case else"
|
|
|
|
${ENDSELECT}
|
|
|
|
${ENDIF}
|
|
|
|
${ENDIF}
|
2003-12-14 00:18:16 +00:00
|
|
|
SectionEnd
|