diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llplugin/slplugin/CMakeLists.txt | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/indra/llplugin/slplugin/CMakeLists.txt b/indra/llplugin/slplugin/CMakeLists.txt index cdf77187c3..c3752a4705 100644 --- a/indra/llplugin/slplugin/CMakeLists.txt +++ b/indra/llplugin/slplugin/CMakeLists.txt @@ -65,9 +65,14 @@ if (BUILD_SHARED_LIBS)      "${LINK_FLAGS_RELEASE} -Wl,--allow-shlib-undefined")  endif () -if (INSTALL AND NOT DARWIN) -  install(TARGETS ${PROJECT_NAME} DESTINATION libexec/${VIEWER_BINARY_NAME}) -endif () +if (INSTALL) +  if (DARWIN) +    install(TARGETS ${PROJECT_NAME} +      DESTINATION ${viewer_BINARY_DIR}/${VIEWER_CHANNEL}.app/Contents/Resources) +  else (DARWIN) +    install(TARGETS ${PROJECT_NAME} DESTINATION libexec/${VIEWER_BINARY_NAME}) +  endif (DARWIN) +endif (INSTALL)  if (LL_TESTS)    ll_deploy_sharedlibs_command(SLPlugin) | 
