[llvm] r188701 - Suppress an annoying CMake warning in ChooseMSVCCRT.cmake
Reid Kleckner
reid at kleckner.net
Mon Aug 19 13:25:26 PDT 2013
Author: rnk
Date: Mon Aug 19 15:25:26 2013
New Revision: 188701
URL: http://llvm.org/viewvc/llvm-project?rev=188701&view=rev
Log:
Suppress an annoying CMake warning in ChooseMSVCCRT.cmake
Warning was:
Argument not separated from preceding token by whitespace.
Modified:
llvm/trunk/cmake/modules/ChooseMSVCCRT.cmake
Modified: llvm/trunk/cmake/modules/ChooseMSVCCRT.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/ChooseMSVCCRT.cmake?rev=188701&r1=188700&r2=188701&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/ChooseMSVCCRT.cmake (original)
+++ llvm/trunk/cmake/modules/ChooseMSVCCRT.cmake Mon Aug 19 15:25:26 2013
@@ -71,7 +71,7 @@ variables (LLVM_USE_CRT_DEBUG, etc) inst
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)
More information about the llvm-commits
mailing list