summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-10-24 18:01:03 +0300
committerGitHub <noreply@github.com>2024-10-24 18:01:03 +0300
commit299c37adaec5cf33981cbbaa3c25c68152b14725 (patch)
tree3ba315d53b392bda681b006ba0b80dc91adf6b9f
parentf9be6cb5b3e6fe3eadafc7ddbcc000c3fe8ed225 (diff)
#2899 Mac: add the libSDL2 link to SLPlugin
-rwxr-xr-xindra/newview/viewer_manifest.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index efc90b8991..18ff6cf7b6 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -1032,6 +1032,12 @@ class Darwin_x86_64_Manifest(ViewerManifest):
):
dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile)
+ # SDL2
+ for libfile in (
+ 'libSDL2-2.0.dylib',
+ ):
+ dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile)
+
# our apps
executable_path = {}
embedded_apps = [ (os.path.join("llplugin", "slplugin"), "SLPlugin.app") ]