From 75bef37109df5f6b7fe42b1368926c8715c4fae4 Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 10 Oct 2008 21:11:26 +0000 Subject: [PATCH] basic winver tests to avoid another 2.39-ish disgrace git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5749 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/Tests/winver.nsi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Source/Tests/winver.nsi diff --git a/Source/Tests/winver.nsi b/Source/Tests/winver.nsi new file mode 100644 index 00000000..2d85a7ac --- /dev/null +++ b/Source/Tests/winver.nsi @@ -0,0 +1,15 @@ +Name winver +OutFile winver.exe + +!include WinVer.nsh + +# basic winver fun & games to make sure it compiles + +Section + + ${If} ${IsWin2000} + ${If} ${AtLeastServicePack} 4 + ${EndIf} + ${EndIf} + +SectionEnd \ No newline at end of file