From c92ffece804cd177c3531e58a39c3f0a6487d67d Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 14 Nov 2011 09:42:51 -0500 Subject: Enumerate VS11 version explicitly in local generators Since the parent commit the local generator Version ivar may be compared for ordering. Convert comparisons: "==VS10" becomes ">=VS10" "!=VS10" becomes "< VS10" to support an explicit enumeration value for VS11 with no change in behavior. --- Source/cmLocalVisualStudioGenerator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Source/cmLocalVisualStudioGenerator.h') diff --git a/Source/cmLocalVisualStudioGenerator.h b/Source/cmLocalVisualStudioGenerator.h index 9794d59a86..fcf1f21f0a 100644 --- a/Source/cmLocalVisualStudioGenerator.h +++ b/Source/cmLocalVisualStudioGenerator.h @@ -37,7 +37,8 @@ public: VS71 = 71, VS8 = 80, VS9 = 90, - VS10 = 100 + VS10 = 100, + VS11 = 110 }; cmLocalVisualStudioGenerator(VSVersion v); -- cgit v1.2.1