diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-07-06 08:09:31 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-07-06 08:09:31 +0800 |
commit | 57f91acf044a3cf2c8a0175aab10fbb7b1e90a7f (patch) | |
tree | 805c3e55d83094fa2010ee66bcd2b6a204736f42 /indra/llplugin | |
parent | 29d68ecb229ecb19e6d0da4cf5fbd8e3bbdde2cf (diff) | |
parent | 8662083cf4130922732aa8fba655310664b80d8b (diff) |
Merge branch 'main' into maint-b
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) |