Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
de2490a3
Commit
de2490a3
authored
4 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Start to fix up manifest copy for new macos lib location
parent
72144b30
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/viewer_manifest.py
+25
-16
25 additions, 16 deletions
indra/newview/viewer_manifest.py
with
25 additions
and
16 deletions
indra/newview/viewer_manifest.py
+
25
−
16
View file @
de2490a3
...
...
@@ -901,6 +901,7 @@ def construct(self):
pkgdir
=
os
.
path
.
join
(
self
.
args
[
'
build
'
],
os
.
pardir
,
'
packages
'
)
relpkgdir
=
os
.
path
.
join
(
pkgdir
,
"
lib
"
,
"
release
"
)
debpkgdir
=
os
.
path
.
join
(
pkgdir
,
"
lib
"
,
"
debug
"
)
libdir
=
debpkgdir
if
self
.
args
[
'
configuration
'
].
lower
()
==
'
debug
'
else
relpkgdir
with
self
.
prefix
(
src
=
""
,
dst
=
"
Contents
"
):
# everything goes in Contents
bugsplat_db
=
self
.
args
.
get
(
'
bugsplat
'
)
...
...
@@ -918,13 +919,34 @@ def construct(self):
# CEF framework goes inside Contents/Frameworks.
# Remember where we parked this car.
with
self
.
prefix
(
src
=
""
,
dst
=
"
Frameworks
"
):
with
self
.
prefix
(
src
=
libdir
,
dst
=
"
Frameworks
"
):
CEF_framework
=
"
Chromium Embedded Framework.framework
"
self
.
path2basename
(
relpkg
dir
,
CEF_framework
)
self
.
path2basename
(
lib
dir
,
CEF_framework
)
CEF_framework
=
self
.
dst_path_of
(
CEF_framework
)
for
libfile
in
(
'
libjpeg.*.dylib
'
,
'
libepoxy.*.dylib
'
,
'
libopenjpeg.*.dylib
'
,
'
libwebp.*.dylib
'
,
):
self
.
path
(
libfile
)
if
self
.
args
.
get
(
'
bugsplat
'
):
self
.
path2basename
(
relpkgdir
,
"
BugsplatMac.framework
"
)
self
.
path
(
"
BugsplatMac.framework
"
)
if
self
.
args
[
'
openal
'
]
==
'
ON
'
or
self
.
args
[
'
openal
'
]
==
'
TRUE
'
:
for
libfile
in
(
'
libopenal.*.dylib
'
,
'
libalut.*.dylib
'
,
):
self
.
path
(
libfile
)
if
self
.
args
[
'
fmodstudio
'
]
==
'
ON
'
or
self
.
args
[
'
fmodstudio
'
]
==
'
TRUE
'
:
if
self
.
args
[
'
configuration
'
].
lower
()
==
'
debug
'
:
self
.
path
(
"
libfmodL.dylib
"
)
else
:
self
.
path
(
"
libfmod.dylib
"
)
with
self
.
prefix
(
dst
=
"
MacOS
"
):
executable
=
self
.
dst_path_of
(
self
.
channel
())
...
...
@@ -1030,7 +1052,6 @@ def construct(self):
"
libapr-1.0.dylib
"
,
"
libaprutil-1.0.dylib
"
,
"
libexpat.1.dylib
"
,
"
libexception_handler.dylib
"
,
"
libGLOD.dylib
"
,
# libnghttp2.dylib is a symlink to
# libnghttp2.major.dylib, which is a symlink to
...
...
@@ -1050,18 +1071,6 @@ def construct(self):
):
self
.
path2basename
(
relpkgdir
,
libfile
)
# dylibs that vary based on configuration
if
self
.
args
[
'
configuration
'
].
lower
()
==
'
debug
'
:
for
libfile
in
(
"
libfmodL.dylib
"
,
):
dylibs
+=
self
.
path_optional
(
os
.
path
.
join
(
debpkgdir
,
libfile
),
libfile
)
else
:
for
libfile
in
(
"
libfmod.dylib
"
,
):
dylibs
+=
self
.
path_optional
(
os
.
path
.
join
(
relpkgdir
,
libfile
),
libfile
)
# our apps
executable_path
=
{}
for
app_bld_dir
,
app
in
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment