aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/cpuid/fix-LNK2019.patch
blob: 0c8bddebf1fca4b62f4a5b1e4e2a4dc5a8202975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/libcpuid/CMakeLists.txt b/libcpuid/CMakeLists.txt
index 09189ef..fa3f6ff 100644
--- a/libcpuid/CMakeLists.txt
+++ b/libcpuid/CMakeLists.txt
@@ -21,7 +21,7 @@ if(UNIX)
   add_compile_definitions(_GNU_SOURCE)
 endif(UNIX)
 
-if("${MSVC_CXX_ARCHITECTURE_ID}" MATCHES "x64")
+if(MSVC AND CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|x64")
   list(APPEND cpuid_sources masm-x64.asm)
 endif()