summaryrefslogtreecommitdiff
path: root/indra/media_plugins/example
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2017-05-03 15:58:21 -0400
committerNat Goodspeed <nat@lindenlab.com>2017-05-03 15:58:21 -0400
commit614c75e1107c9b06b2e2c663e2c6411d1fcd21f2 (patch)
tree94bf15a3e3107916faf8a9b152fa0382985b9628 /indra/media_plugins/example
parentcdbad842c276efda32b36aba1040e3205f0fc38c (diff)
DRTVWR-418: Silence some Mac build warnings.
Whatever we were trying to do with LLSharedLibs.cmake hasn't worked on the Mac for a long time, and trying to fix it only digs up more problems. Skip it: we've already worked around it. Update the media_plugins_example CMakeLists.txt to eliminate some CMake non-existent dependency warnings.
Diffstat (limited to 'indra/media_plugins/example')
-rw-r--r--indra/media_plugins/example/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/media_plugins/example/CMakeLists.txt b/indra/media_plugins/example/CMakeLists.txt
index 42eb378172..6f5b28b8e9 100644
--- a/indra/media_plugins/example/CMakeLists.txt
+++ b/indra/media_plugins/example/CMakeLists.txt
@@ -60,7 +60,9 @@ target_link_libraries(media_plugin_example
add_dependencies(media_plugin_example
${LLPLUGIN_LIBRARIES}
${MEDIA_PLUGIN_BASE_LIBRARIES}
- ${LLCOMMON_LIBRARIES}
+ # Using ${LLCOMMON_LIBRARIES} here drags in a whole bunch of Boost stuff
+ # that only produces CMake warnings about nonexistent dependencies.
+ llcommon
)
if (WINDOWS)