From adad73cda79c3e96b1bfe4e214b02781c1d4dbbd Mon Sep 17 00:00:00 2001 From: Daniel Gibson Date: Sun, 27 Feb 2022 00:37:31 +0100 Subject: [PATCH] CMake: Fix typo in MSVC-specific CPU detection for x64 --- neo/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/CMakeLists.txt b/neo/CMakeLists.txt index 64e36b7a..92d05c5f 100644 --- a/neo/CMakeLists.txt +++ b/neo/CMakeLists.txt @@ -83,7 +83,7 @@ elseif(MSVC) if(CMAKE_GENERATOR_PLATFORM STREQUAL "Win32") set(cpu "x86") elseif(CMAKE_GENERATOR_PLATFORM STREQUAL "x64") - set(cpu "x64_64") + set(cpu "x86_64") elseif(CMAKE_GENERATOR_PLATFORM STREQUAL "ARM") # at least on RPi 32bit, gcc -dumpmachine outputs "arm-linux-gnueabihf", # so we'll use "arm" there => use the same for 32bit ARM on MSVC