Fix a little bit the CMakeLists.txt file's indentation.

This commit is contained in:
Username404 2021-03-24 11:49:20 +01:00
parent 37eb8b6efe
commit 545c7b4b0d
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ if (NOT DEFINED CODENAME)
set(CODENAME "Unknown")
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/misc/codename.txt")
file(READ "${CMAKE_CURRENT_SOURCE_DIR}/misc/codename.txt" CODENAME)
endif ()
endif()
endif()
set(EXEDESC "Transpiler for the yerbacon language.")
@ -27,7 +27,7 @@ if((${CMAKE_CXX_COMPILER_ID} STREQUAL GNU) OR (${CMAKE_CXX_COMPILER_ID} STREQUAL
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11.0)
message(WARNING "A ${CMAKE_CXX_COMPILER_ID} compiler version of preferably 11 or higher should be used.")
endif()
set(CMAKE_POSITION_INDEPENDENT_CODE True)
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc")
set(CMAKE_CXX_FLAGS "-flto ${CMAKE_CXX_FLAGS} -pipe -fstack-protector-strong -fstack-clash-protection")
include(CheckCXXCompilerFlag)