Skip to content

Commit

Permalink
Suppress an annoying CMake warning in ChooseMSVCCRT.cmake
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rnk committed Aug 19, 2013
1 parent d345395 commit f1070a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/modules/ChooseMSVCCRT.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit f1070a0

Please sign in to comment.