diff options
author | Charles Pigott <charlespigott@googlemail.com> | 2020-09-25 12:55:25 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2020-09-25 14:43:13 +0100 |
commit | 348c231e12d87c106bd1ab3c9d7a5ecdab6863d8 (patch) | |
tree | 42f3d9120a1c194068e06cb5918192eeb3175dbe /src/blitter | |
parent | df5362a0083b571d0b8eb2879b618c3edbf9e7fc (diff) | |
download | openttd-348c231e12d87c106bd1ab3c9d7a5ecdab6863d8.tar.xz |
Codechange: Make codestyle for CMake files consistent for 'control' statements
Diffstat (limited to 'src/blitter')
-rw-r--r-- | src/blitter/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blitter/CMakeLists.txt b/src/blitter/CMakeLists.txt index 2abe6aec0..0aff38141 100644 --- a/src/blitter/CMakeLists.txt +++ b/src/blitter/CMakeLists.txt @@ -32,7 +32,7 @@ add_files( CONDITION NOT OPTION_DEDICATED AND SSE_FOUND ) -if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") +if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") set_compile_flags( 32bpp_anim_sse2.cpp 32bpp_sse2.cpp @@ -44,7 +44,7 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clan 32bpp_anim_sse4.cpp 32bpp_sse4.cpp COMPILE_FLAGS -msse4.1) -endif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") +endif() add_files( base.hpp |