diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-23 07:01:30 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-23 07:01:30 +0800 |
commit | 98e99812072e6125411174236e1421d9312a50da (patch) | |
tree | ca44ec266990ec6db9e2afcca8ea53ed42353307 | |
parent | 603589fde0ad81fc3687ecda0b046fb1f5260053 (diff) |
Link clog too to Windows arm64 SLPlugin
Referred from cpuinfo.
-rw-r--r-- | indra/llplugin/slplugin/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llplugin/slplugin/CMakeLists.txt b/indra/llplugin/slplugin/CMakeLists.txt index 2100e6f556..03a057fbcb 100644 --- a/indra/llplugin/slplugin/CMakeLists.txt +++ b/indra/llplugin/slplugin/CMakeLists.txt @@ -49,6 +49,10 @@ target_link_libraries(SLPlugin ll::pluginlibraries ) +if ($ENV{MSYSTEM_CARCH} MATCHES aarch64) + target_link_libraries(${PROJECT_NAME} clog) +endif () + if (DARWIN) # Make sure the app bundle has a Resources directory (it will get populated by viewer-manifest.py later) add_custom_command( |