Another windows build fix attempt after r198136.

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


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198143 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nico Weber 2013-12-29 00:50:09 +00:00
parent 6f93d65e02
commit 3b6e25e332

View File

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