From a4e42f752f724463e4c72b80cdf85561c703df10 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Thu, 25 Mar 2021 19:16:38 +0100 Subject: [PATCH] Add a few indentation spaces in the CMakeLists.txt file. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b018b2..37c8171 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ if (NOT MSVC) endif() set(CMAKE_CXX_FLAGS_RELEASE "-Os") -if((${CMAKE_CXX_COMPILER_ID} STREQUAL GNU) OR (${CMAKE_CXX_COMPILER_ID} STREQUAL Clang)) +if ((${CMAKE_CXX_COMPILER_ID} STREQUAL GNU) OR (${CMAKE_CXX_COMPILER_ID} STREQUAL Clang)) 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() @@ -51,7 +51,7 @@ elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL Clang) set(CMAKE_CXX_FLAGS "-fwhole-program-vtables ${CMAKE_CXX_FLAGS}") endif() -if(MINGW OR MSVC) +if (MINGW OR MSVC) if (UNIX) SET(CMAKE_RC_COMPILE_OBJECT " -O coff -i -o ")