diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-07-05 20:37:39 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-07-05 20:37:39 +0800 |
commit | be75d0eba7ff0a29573139aee593debba81cc65d (patch) | |
tree | 2545f54e724b38702be6876e3b0ee4948bf64d25 /indra/llplugin | |
parent | 6814c077701786f9d69e9f5c0f78ed496a3122cf (diff) | |
parent | 6369047dcb74323b248de59bc8187db0d315548a (diff) |
Merge branch 'main' into webrtc-voice
Diffstat (limited to 'indra/llplugin')
-rw-r--r-- | indra/llplugin/slplugin/CMakeLists.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/indra/llplugin/slplugin/CMakeLists.txt b/indra/llplugin/slplugin/CMakeLists.txt index e86ddd8a32..c3752a4705 100644 --- a/indra/llplugin/slplugin/CMakeLists.txt +++ b/indra/llplugin/slplugin/CMakeLists.txt @@ -66,8 +66,13 @@ if (BUILD_SHARED_LIBS) endif () if (INSTALL) - install(TARGETS ${PROJECT_NAME} DESTINATION libexec/${VIEWER_BINARY_NAME}) -endif () + 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) |