diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-10-24 18:01:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-24 18:01:03 +0300 |
commit | 299c37adaec5cf33981cbbaa3c25c68152b14725 (patch) | |
tree | 3ba315d53b392bda681b006ba0b80dc91adf6b9f | |
parent | f9be6cb5b3e6fe3eadafc7ddbcc000c3fe8ed225 (diff) |
#2899 Mac: add the libSDL2 link to SLPlugin
-rwxr-xr-x | indra/newview/viewer_manifest.py | 6 |
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") ] |