1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[CMake] Fixing bots

CMake calls to set_property with APPEND string need to have a leading space.

llvm-svn: 254659
This commit is contained in:
Chris Bieneman 2015-12-03 22:55:36 +00:00
parent 00f689303f
commit 3c356b4f56

View File

@ -668,7 +668,7 @@ function(export_executable_symbols target)
set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1) set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1)
if (APPLE) if (APPLE)
set_property(TARGET ${target} APPEND_STRING PROPERTY set_property(TARGET ${target} APPEND_STRING PROPERTY
LINK_FLAGS "-rdynamic") LINK_FLAGS " -rdynamic")
endif() endif()
endif() endif()
endfunction() endfunction()