summaryrefslogtreecommitdiffstats
path: root/llvm/cmake/modules/ChooseMSVCCRT.cmake
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-02-02 16:46:35 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-02-02 16:46:35 +0000
commit782933717269204c0483f9ddbf2888d62f034c8b (patch)
tree955a24ab0ea89f1545de16c1e6547986b496b52a /llvm/cmake/modules/ChooseMSVCCRT.cmake
parent6b13975d40a42d219fdc40e10dd54e03234878c0 (diff)
downloadbcm5719-llvm-782933717269204c0483f9ddbf2888d62f034c8b.tar.gz
bcm5719-llvm-782933717269204c0483f9ddbf2888d62f034c8b.zip
[CMake] Untabify.
llvm-svn: 200644
Diffstat (limited to 'llvm/cmake/modules/ChooseMSVCCRT.cmake')
-rw-r--r--llvm/cmake/modules/ChooseMSVCCRT.cmake14
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/cmake/modules/ChooseMSVCCRT.cmake b/llvm/cmake/modules/ChooseMSVCCRT.cmake
index 25ed9c71f1a..0e6e1aa5525 100644
--- a/llvm/cmake/modules/ChooseMSVCCRT.cmake
+++ b/llvm/cmake/modules/ChooseMSVCCRT.cmake
@@ -64,14 +64,14 @@ variables (LLVM_USE_CRT_DEBUG, etc) instead.")
string(TOUPPER "${build_type}" build)
if (NOT LLVM_USE_CRT_${build})
get_current_crt(LLVM_USE_CRT_${build}
- MSVC_CRT_REGEX
- CMAKE_CXX_FLAGS_${build})
+ MSVC_CRT_REGEX
+ CMAKE_CXX_FLAGS_${build})
set(LLVM_USE_CRT_${build}
- "${LLVM_USE_CRT_${build}}"
- CACHE STRING "Specify VC++ CRT to use for ${build_type} configurations."
- FORCE)
+ "${LLVM_USE_CRT_${build}}"
+ CACHE STRING "Specify VC++ CRT to use for ${build_type} configurations."
+ FORCE)
set_property(CACHE LLVM_USE_CRT_${build}
- PROPERTY STRINGS ;${${MSVC_CRT}})
+ PROPERTY STRINGS ;${${MSVC_CRT}})
endif(NOT LLVM_USE_CRT_${build})
endforeach(build_type)
@@ -84,7 +84,7 @@ variables (LLVM_USE_CRT_DEBUG, etc) instead.")
list(FIND ${MSVC_CRT} ${LLVM_USE_CRT_${build}} idx)
if (idx LESS 0)
message(FATAL_ERROR
- "Invalid value for LLVM_USE_CRT_${build}: ${LLVM_USE_CRT_${build}}. Valid options are one of: ${${MSVC_CRT}}")
+ "Invalid value for LLVM_USE_CRT_${build}: ${LLVM_USE_CRT_${build}}. Valid options are one of: ${${MSVC_CRT}}")
endif (idx LESS 0)
message(STATUS "Using ${build_type} VC++ CRT: ${LLVM_USE_CRT_${build}}")
endif()
OpenPOWER on IntegriCloud