From eccdac901393ef5b931d1e03ff2ddc423c07d0c5 Mon Sep 17 00:00:00 2001 From: Fireblade <72758695+Firebladedoge229@users.noreply.github.com> Date: Wed, 6 May 2026 06:32:08 -0400 Subject: [PATCH] fix: non-windows64 cmake build --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7475103c..6a7d3087 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -241,7 +241,9 @@ set(_item_map_inputs "${CMAKE_CURRENT_SOURCE_DIR}/Minecraft.World/Tile.h" ) -string(REPLACE ";" "\\;" _item_map_inputs "${_item_map_inputs}") +if(NOT PLATFORM_NAME STREQUAL "Windows64") + string(REPLACE ";" "\\;" _item_map_inputs "${_item_map_inputs}") +endif() #neo: added ItemNameMap generation add_custom_command(