Skip to content

Commit

Permalink
Fix wrong POCO version check in CMake
Browse files Browse the repository at this point in the history
  • Loading branch information
kblaschke committed May 6, 2024
1 parent 18e1232 commit 7e2daeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dependencies_check.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7e2daeb

Please sign in to comment.