removed space between and its opening parentheses

This commit is contained in:
p01arst0rm 2021-04-18 15:36:00 +01:00 committed by Ivan
parent 7618e7f3fb
commit b812ef2771
3 changed files with 9 additions and 9 deletions

View file

@ -20,7 +20,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/rpcs3/cmake_modules")
set(CMAKE_CXX_STANDARD 20)
include(CheckCXXCompilerFlag)
if (NOT CMAKE_BUILD_TYPE)
if(NOT CMAKE_BUILD_TYPE)
message(STATUS "No build type selected, default to Release")
set(CMAKE_BUILD_TYPE "Release")
endif()
@ -36,7 +36,7 @@ if(NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
endif()
find_program(CCACHE_FOUND ccache)
if (CCACHE_FOUND)
if(CCACHE_FOUND)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif()
@ -67,7 +67,7 @@ add_subdirectory(3rdparty)
unset(CMAKE_CXX_FLAGS)
unset(CMAKE_C_FLAGS)
if (NOT WIN32)
if(NOT WIN32)
add_compile_options(-pthread)
endif()