From 8a3e0a47dc1a3fa32bc833ba1f84cec8fd5cd572 Mon Sep 17 00:00:00 2001 From: lethosor Date: Tue, 13 Oct 2015 16:25:38 -0400 Subject: [PATCH] Require MSVC 2010 on Windows --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ead28d66d..84db3f36f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,7 @@ if(UNIX) endif() if(WIN32) - if(NOT MSVC) + if((NOT MSVC) OR (NOT MSVC_VERSION STREQUAL 1600)) message(SEND_ERROR "MSVC 2010 is required") endif() endif()