summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-06-23 10:20:10 +0800
committerErik Kundiman <erik@megapahit.org>2025-06-23 10:20:10 +0800
commitaac750c57fbd22814958a112d6c262254243130f (patch)
tree371a2058d46983bcd791d97dafa52fa429135e9e
parent61d49c273d0ad0a58ecd9dc54d8c48d43e17199a (diff)
Link clog too to Windows arm64 Megapahit.exe
Referred from cpuinfo.
-rw-r--r--indra/newview/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index 1515addad4..c9a04a09cb 100644
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -2107,6 +2107,10 @@ if (NOT (CMAKE_SYSTEM_NAME MATCHES FreeBSD OR ($ENV{MSYSTEM_CARCH} MATCHES aarch
target_link_libraries(${VIEWER_BINARY_NAME} llwebrtc )
endif ()
+if ($ENV{MSYSTEM_CARCH} MATCHES aarch64)
+ target_link_libraries(${VIEWER_BINARY_NAME} clog)
+endif ()
+
if (ENABLE_MEDIA_PLUGINS)
target_link_libraries(${VIEWER_BINARY_NAME} ll::libvlc )
if (DARWIN OR LINUX)