Remove hard TABs from CMake policies file
No real changes, just use spaces for indentation as everywhere else.
This commit is contained in:
@@ -8,41 +8,41 @@
|
|||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
if(POLICY CMP0025)
|
if(POLICY CMP0025)
|
||||||
# Compiler id for Apple Clang is now AppleClang
|
# Compiler id for Apple Clang is now AppleClang
|
||||||
cmake_policy(SET CMP0025 NEW)
|
cmake_policy(SET CMP0025 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(POLICY CMP0038)
|
if(POLICY CMP0038)
|
||||||
# targets may not link directly to themselves
|
# targets may not link directly to themselves
|
||||||
cmake_policy(SET CMP0038 NEW)
|
cmake_policy(SET CMP0038 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(POLICY CMP0045)
|
if(POLICY CMP0045)
|
||||||
# error on non-existent target in get_target_property
|
# error on non-existent target in get_target_property
|
||||||
cmake_policy(SET CMP0045 NEW)
|
cmake_policy(SET CMP0045 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(POLICY CMP0046)
|
if(POLICY CMP0046)
|
||||||
# error on non-existent dependency in add_dependencies
|
# error on non-existent dependency in add_dependencies
|
||||||
cmake_policy(SET CMP0046 NEW)
|
cmake_policy(SET CMP0046 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(POLICY CMP0049)
|
if(POLICY CMP0049)
|
||||||
# do not expand variables in target source entries
|
# do not expand variables in target source entries
|
||||||
cmake_policy(SET CMP0049 NEW)
|
cmake_policy(SET CMP0049 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(POLICY CMP0053)
|
if(POLICY CMP0053)
|
||||||
# simplify variable reference and escape sequence evaluation
|
# simplify variable reference and escape sequence evaluation
|
||||||
cmake_policy(SET CMP0053 NEW)
|
cmake_policy(SET CMP0053 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(POLICY CMP0054)
|
if(POLICY CMP0054)
|
||||||
# only interpret if() arguments as variables or keywords when unquoted
|
# only interpret if() arguments as variables or keywords when unquoted
|
||||||
cmake_policy(SET CMP0054 NEW)
|
cmake_policy(SET CMP0054 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(POLICY CMP0042)
|
if(POLICY CMP0042)
|
||||||
# MACOSX_RPATH is enabled by default.
|
# MACOSX_RPATH is enabled by default.
|
||||||
cmake_policy(SET CMP0042 NEW)
|
cmake_policy(SET CMP0042 NEW)
|
||||||
endif()
|
endif()
|
||||||
|
Reference in New Issue
Block a user