mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:57:45 +00:00
Lagom: Update GCC version check in CMakeLists.txt
This was forgotten in bc2ebcadc0
.
This commit is contained in:
parent
f99d356a17
commit
f01d90aa63
1 changed files with 2 additions and 2 deletions
|
@ -8,9 +8,9 @@ project(
|
||||||
LANGUAGES C CXX
|
LANGUAGES C CXX
|
||||||
)
|
)
|
||||||
|
|
||||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "11")
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "12")
|
||||||
message(FATAL_ERROR
|
message(FATAL_ERROR
|
||||||
"A GCC version less than 11 was detected (${CMAKE_CXX_COMPILER_VERSION}), this is unsupported.\n"
|
"A GCC version less than 12 was detected (${CMAKE_CXX_COMPILER_VERSION}), this is unsupported.\n"
|
||||||
"Please re-read the build instructions documentation, and upgrade your host compiler.\n")
|
"Please re-read the build instructions documentation, and upgrade your host compiler.\n")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue