Skip to content
Snippets Groups Projects
Commit b4183280 authored by Monroe Linden's avatar Monroe Linden
Browse files

When building llmediaplugintest on the mac, copy the llcommon dylib so it can actually run.

parent 60e6fa13
No related branches found
No related tags found
No related merge requests found
...@@ -338,6 +338,13 @@ add_custom_command(TARGET llmediaplugintest POST_BUILD ...@@ -338,6 +338,13 @@ add_custom_command(TARGET llmediaplugintest POST_BUILD
DEPENDS ${BUILT_SLPLUGIN} DEPENDS ${BUILT_SLPLUGIN}
) )
get_target_property(BUILT_LLCOMMON llcommon LOCATION)
add_custom_command(TARGET llmediaplugintest POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${BUILT_LLCOMMON} ${PLUGINS_DESTINATION_DIR}
DEPENDS ${BUILT_LLCOMMON}
)
if (DARWIN OR WINDOWS) if (DARWIN OR WINDOWS)
get_target_property(BUILT_WEBKIT_PLUGIN media_plugin_webkit LOCATION) get_target_property(BUILT_WEBKIT_PLUGIN media_plugin_webkit LOCATION)
add_custom_command(TARGET llmediaplugintest POST_BUILD add_custom_command(TARGET llmediaplugintest POST_BUILD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment