We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b07a7e2 commit e81be3fCopy full SHA for e81be3f
CMakeLists.txt
@@ -29,6 +29,11 @@ if(WIN32)
29
set(VCPKG_LIBRARY_LINKAGE static)
30
# FIX: unsure if this matters but doesn't break things on arm64
31
# set(VCPKG_TARGET_TRIPLET x64-windows-static)
32
+ # FIX: this should be equivalent to x64-windows-static - why does it work on arm64?
33
+ message("CMAKE_SYSTEM_PROCESSOR = ${CMAKE_SYSTEM_PROCESSOR}")
34
+ set(VCPKG_TARGET_ARCHITECTURE x64)
35
+ set(VCPKG_CRT_LINKAGE static)
36
+ set(VCPKG_LIBRARY_LINKAGE static)
37
set(CMAKE_FIND_LIBRARY_SUFFIXES ".lib")
38
39
# # Enable Hot Reload for MSVC compilers if supported.
0 commit comments