Make the GNU compiler message a FATAL_ERROR in the CMakeLists.txt file.

This commit is contained in:
Username404 2021-08-09 14:39:09 +02:00
parent 3b991da962
commit 043d2e7485
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ endif()
if (${CMAKE_CXX_COMPILER_ID} STREQUAL GNU)
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11.0)
message(WARNING "A GNU compiler version of preferably 11 or higher should be used.")
message(FATAL_ERROR "A GNU compiler version of preferably 11 or higher is required.")
endif()
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fira-loop-pressure -ftree-loop-distribution -floop-interchange -fipa-pta -fivopts -s")
set(CMAKE_CXX_FLAGS "-fno-use-linker-plugin -fwhole-program ${CMAKE_CXX_FLAGS}")