summaryrefslogtreecommitdiffstats
path: root/llvm/cmake/modules
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2013-08-19 20:25:26 +0000
committerReid Kleckner <reid@kleckner.net>2013-08-19 20:25:26 +0000
commit67ed6f68f3d7e0e4cfd1c3b6d6b8896c7018aa2a (patch)
tree5a645421bd2591f954b1a19a266a06ae59efc80a /llvm/cmake/modules
parent834400b484ab617ab089b997c9c5d9c60c7204b1 (diff)
downloadbcm5719-llvm-67ed6f68f3d7e0e4cfd1c3b6d6b8896c7018aa2a.tar.gz
bcm5719-llvm-67ed6f68f3d7e0e4cfd1c3b6d6b8896c7018aa2a.zip
Suppress an annoying CMake warning in ChooseMSVCCRT.cmake
Warning was: Argument not separated from preceding token by whitespace. llvm-svn: 188701
Diffstat (limited to 'llvm/cmake/modules')
-rw-r--r--llvm/cmake/modules/ChooseMSVCCRT.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/cmake/modules/ChooseMSVCCRT.cmake b/llvm/cmake/modules/ChooseMSVCCRT.cmake
index 6a2f426b269..25ed9c71f1a 100644
--- a/llvm/cmake/modules/ChooseMSVCCRT.cmake
+++ b/llvm/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)
OpenPOWER on IntegriCloud