Skip to content

Commit 7e2daeb

Browse files
committedMay 6, 2024··
Fix wrong POCO version check in CMake
1 parent 18e1232 commit 7e2daeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎dependencies_check.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if(SDL2_VERSION VERSION_LESS 2.0.5)
66
message(FATAL_ERROR "libSDL version 2.0.5 or higher is required. Version found: ${SDL2_VERSION}.")
77
endif()
88

9-
if(Poco_VERSION VERSION_LESS 1.11.2 AND Poco_VERSION GREATER_EQUAL 1.10.0)
9+
if(Poco_VERSION VERSION_LESS 1.11.2 AND Poco_VERSION VERSION_GREATER_EQUAL 1.10.0)
1010
message(FATAL_ERROR "Your Poco library contains a serious bug which will cause crashes. Your version is ${Poco_VERSION}.
1111
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.
1212
projectMSDL will NOT work with the affected versions.

0 commit comments

Comments
 (0)
Please sign in to comment.