From 1de308cb16989ba65c4227fba9608ccdd2f49f35 Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 24 Apr 2023 12:27:12 +0100 Subject: [PATCH] Projucer: Remove option to target unsupported Windows versions from Codeblocks exporter --- .../Source/ProjectSaving/jucer_ProjectExport_CodeBlocks.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CodeBlocks.h b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CodeBlocks.h index 245344d999..3b05766cec 100644 --- a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CodeBlocks.h +++ b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CodeBlocks.h @@ -139,10 +139,8 @@ public: if (isWindows()) { props.add (new ChoicePropertyComponent (targetPlatformValue, "Target platform", - { "Windows NT 4.0", "Windows 2000", "Windows XP", "Windows Server 2003", "Windows Vista", "Windows Server 2008", - "Windows 7", "Windows 8", "Windows 8.1", "Windows 10" }, - { "0x0400", "0x0500", "0x0501", "0x0502", "0x0600", "0x0600", - "0x0601", "0x0602", "0x0603", "0x0A00" }), + { "Windows Vista", "Windows Server 2008", "Windows 7", "Windows 8", "Windows 8.1", "Windows 10" }, + { "0x0600", "0x0600", "0x0601", "0x0602", "0x0603", "0x0A00" }), "This sets the preprocessor macro WINVER to an appropriate value for the corresponding platform."); } }