diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-09-07 20:43:30 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-09-07 20:43:30 +0800 |
commit | 0dc8974222905622b07924469bd9e3cff8a962ba (patch) | |
tree | 3ecc92a75640b05f216bac36a8511bbb842b8a5d | |
parent | 3aacb2ec3f49d82e99af516bef4cd547f55dc3e0 (diff) |
Fix 360 snapshots
https://megapahit.com/show_bug.cgi?id=98
by just enabling JS dependencies (we have our own implementation
of downloading "prebuilt" libraries now).
-rw-r--r-- | indra/newview/CMakeLists.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 968ef7414d..2a3e49c6f9 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -14,16 +14,14 @@ include(BuildPackagesInfo) endif () include(BuildVersion) include(CMakeCopyIfDifferent) -if (NOT USESYSTEMLIBS) include(CubemapToEquirectangularJS) +if (NOT USESYSTEMLIBS) include(DBusGlib) endif () include(DragDrop) include(EXPAT) include(Hunspell) -if (NOT USESYSTEMLIBS) include(JPEGEncoderBasic) -endif () include(LLAppearance) include(LLAudio) include(LLCA) @@ -42,9 +40,7 @@ include(OpenSSL) include(PNG) include(TemplateCheck) include(TinyEXR) -if (NOT USESYSTEMLIBS) include(ThreeJS) -endif () include(Tracy) include(UI) include(ViewerMiscLibs) |