From 7e2daeb983b44e6de584b0e647e3595634fc46a0 Mon Sep 17 00:00:00 2001 From: Kai Blaschke Date: Mon, 6 May 2024 02:24:30 +0200 Subject: [PATCH] Fix wrong POCO version check in CMake --- dependencies_check.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies_check.cmake b/dependencies_check.cmake index 003ce55..1dd0482 100644 --- a/dependencies_check.cmake +++ b/dependencies_check.cmake @@ -6,7 +6,7 @@ if(SDL2_VERSION VERSION_LESS 2.0.5) message(FATAL_ERROR "libSDL version 2.0.5 or higher is required. Version found: ${SDL2_VERSION}.") endif() -if(Poco_VERSION VERSION_LESS 1.11.2 AND Poco_VERSION GREATER_EQUAL 1.10.0) +if(Poco_VERSION VERSION_LESS 1.11.2 AND Poco_VERSION VERSION_GREATER_EQUAL 1.10.0) message(FATAL_ERROR "Your Poco library contains a serious bug which will cause crashes. Your version is ${Poco_VERSION}. Affected versions are 1.10.0 to 1.11.1, including. Please upgrade Poco to at least 1.11.2 or downgrade to 1.9.x. projectMSDL will NOT work with the affected versions.