Another windows build fix attempt after r198136.

The current quoting is stripped by cmake, try quoting more.

llvm-svn: 198143
This commit is contained in:
Nico Weber 2013-12-29 00:50:09 +00:00
parent 6bb05d1eb8
commit 35ea47d0d2
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ function(add_llvm_symbol_exports target_name export_file)
add_custom_command(OUTPUT symbol.def
COMMAND ${CMAKE_COMMAND} -E echo "EXPORTS" > symbol.def
COMMAND ${CAT} "${export_file}" >> symbol.def
COMMAND ${CAT} "\"${export_file}\"" >> symbol.def
DEPENDS ${export_file}
VERBATIM
COMMENT "Creating export file for ${target_name}")