From: Reid Kleckner Date: Mon, 19 Aug 2013 20:25:26 +0000 (+0000) Subject: Suppress an annoying CMake warning in ChooseMSVCCRT.cmake X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f1070a0b860d0d05a578b27f8a226732c7a1dfb9;p=oota-llvm.git Suppress an annoying CMake warning in ChooseMSVCCRT.cmake Warning was: Argument not separated from preceding token by whitespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188701 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/ChooseMSVCCRT.cmake b/cmake/modules/ChooseMSVCCRT.cmake index 6a2f426b269..25ed9c71f1a 100644 --- a/cmake/modules/ChooseMSVCCRT.cmake +++ b/cmake/modules/ChooseMSVCCRT.cmake @@ -71,7 +71,7 @@ variables (LLVM_USE_CRT_DEBUG, etc) instead.") 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)