From 1127d0145e0f331c50e4cc5cef06466eab9b662e Mon Sep 17 00:00:00 2001 From: Egor Pugin Date: Mon, 26 Dec 2016 17:35:50 +0300 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index da37f6fe..f27ef2ae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,9 +10,11 @@ cmake_minimum_required(VERSION 2.8.11) +if (NOT APPVEYOR) if (WIN32 AND CMAKE_VERSION VERSION_EQUAL 3.6 OR (CMAKE_VERSION VERSION_GREATER 3.6 AND CMAKE_VERSION VERSION_LESS 3.7)) message(FATAL_ERROR "You have bugged CMake version 3.6 which is known to not work with tesseract. Please, upgrade CMake.") endif() +endif() # In-source builds are disabled. if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})