From ef4f3016bb9ee85ec0f412f3332e7e3aad7148d8 Mon Sep 17 00:00:00 2001 From: morb Date: Tue, 21 Apr 2026 16:57:14 -0400 Subject: [PATCH] neo/CMakeLists.txt: whoopsie with game library naming. the shared object was named gamex86_64.so on arm64, resulting in a missing file situation. fixing. --- neo/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neo/CMakeLists.txt b/neo/CMakeLists.txt index a35e83d3..e56816d7 100644 --- a/neo/CMakeLists.txt +++ b/neo/CMakeLists.txt @@ -490,6 +490,9 @@ if(CMAKE_SIZEOF_VOID_P EQUAL 8) elseif(CMAKE_SIZEOF_VOID_P EQUAL 4) set(cpu_arch "x86") endif() +if(NOT MSVC) + set(cpu_arch "${cpu}") +endif() if(NOT MSVC) message(STATUS "Building ${CMAKE_BUILD_TYPE} for ${os}-${cpu}")