diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-23 16:07:34 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-23 16:07:34 +0800 |
commit | 3862a36ac846a9e8f892b079336d41299fee57a3 (patch) | |
tree | fac7183a53ea18f29509111a6467a973c57d8fd9 | |
parent | ab2afc71751527c05cbcb00e04e06b69a1b05d21 (diff) |
Bundle OpenSSL & libcurl for Windows arm64
-rw-r--r-- | indra/newview/ViewerInstall.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/ViewerInstall.cmake b/indra/newview/ViewerInstall.cmake index 61a8a4ee4e..343c3fb9c7 100644 --- a/indra/newview/ViewerInstall.cmake +++ b/indra/newview/ViewerInstall.cmake @@ -120,6 +120,13 @@ elseif (WINDOWS) ) if ($ENV{MSYSTEM_CARCH} MATCHES aarch64) + install( + PROGRAMS + ${prefix_result}/../bin/libcrypto-3-arm64.dll + ${prefix_result}/../bin/libssl-3-arm64.dll + ${prefix_result}/../bin/libcurl.dll + DESTINATION . + ) set(BOOST_PLATFORM a${ADDRESS_SIZE}) else () set(BOOST_PLATFORM x${ADDRESS_SIZE}) |