build: Remove redundant cmake version check

The main `CMakelists.txt` already asserts a minimum version of `3.12`
which renders the condition `cmake <= 3.11.4` to be always false.
This commit is contained in:
Henrik S. Gaßmann 2023-05-29 15:30:02 +02:00 committed by ArthurSonzogni
parent 7f5aed1e66
commit 3483022703
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C

View File

@ -1,5 +1,4 @@
if (NOT FTXUI_BUILD_TESTS OR
NOT ${CMAKE_VERSION} VERSION_GREATER "3.11.4")
if (NOT FTXUI_BUILD_TESTS)
return()
endif()