diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-08-14 06:38:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 06:38:17 +0300 |
commit | 31774e82c4c9ba2c1243fbc417174e966314dfca (patch) | |
tree | 340e51989a998bf3e026722a4d304f8e71554629 /indra/newview/viewer_manifest.py | |
parent | 2921deed78af5751b3788aa8d8e1297306b2abab (diff) | |
parent | 6f0e6765218543c8e0d84931d37460026bc6bb3c (diff) |
Merge pull request #2282 from RyeMutt/tracy-update
Update tracy to 0.11 and improve developer experience
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 91a9347449..b2f9654eb3 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -586,6 +586,10 @@ class Windows_x86_64_Manifest(ViewerManifest): self.path("BugSplat64.dll") self.path("BugSplatRc64.dll") + if self.args['tracy'] == 'ON': + with self.prefix(src=os.path.join(pkgdir, 'bin')): + self.path("tracy-profiler.exe") + self.path(src="licenses-win32.txt", dst="licenses.txt") self.path("featuretable.txt") self.path("cube.dae") @@ -1372,6 +1376,7 @@ if __name__ == "__main__": dict(name='bugsplat', description="""BugSplat database to which to post crashes, if BugSplat crash reporting is desired""", default=''), dict(name='openal', description="""Indication openal libraries are needed""", default='OFF'), + dict(name='tracy', description="""Indication tracy profiler is enabled""", default='OFF'), ] try: main(extra=extra_arguments) |