forked from OSchip/llvm-project
Suppress an annoying CMake warning in ChooseMSVCCRT.cmake
Warning was: Argument not separated from preceding token by whitespace. llvm-svn: 188701
This commit is contained in:
parent
834400b484
commit
67ed6f68f3
|
@ -71,7 +71,7 @@ variables (LLVM_USE_CRT_DEBUG, etc) instead.")
|
||||||
CACHE STRING "Specify VC++ CRT to use for ${build_type} configurations."
|
CACHE STRING "Specify VC++ CRT to use for ${build_type} configurations."
|
||||||
FORCE)
|
FORCE)
|
||||||
set_property(CACHE LLVM_USE_CRT_${build}
|
set_property(CACHE LLVM_USE_CRT_${build}
|
||||||
PROPERTY STRINGS "";${${MSVC_CRT}})
|
PROPERTY STRINGS ;${${MSVC_CRT}})
|
||||||
endif(NOT LLVM_USE_CRT_${build})
|
endif(NOT LLVM_USE_CRT_${build})
|
||||||
endforeach(build_type)
|
endforeach(build_type)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue