NSIS/Examples/LogicLib.nsi
eccles a453e3281e NSIS Logic Library - dselkirk's selectlib 1.1:
- 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
2003-12-14 00:19:48 +00:00

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