projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d345395
)
Suppress an annoying CMake warning in ChooseMSVCCRT.cmake
author
Reid Kleckner
<reid@kleckner.net>
Mon, 19 Aug 2013 20:25:26 +0000
(20:25 +0000)
committer
Reid Kleckner
<reid@kleckner.net>
Mon, 19 Aug 2013 20:25:26 +0000
(20:25 +0000)
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
cmake/modules/ChooseMSVCCRT.cmake
patch
|
blob
|
history
diff --git
a/cmake/modules/ChooseMSVCCRT.cmake
b/cmake/modules/ChooseMSVCCRT.cmake
index 6a2f426b269407d0e852be1ab6c1cf215357e5d0..25ed9c71f1ab063acd76e076e25551899b90885e 100644
(file)
--- 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)