fix other stuff

This commit is contained in:
halogen 2026-03-04 13:37:53 -05:00
parent e21202183f
commit 1dbfe11489
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.24)
project(MinecraftConsoles LANGUAGES C CXX RC) project(MinecraftConsoles LANGUAGES C CXX RC)
if(NOT CMAKE_SIZEOF_VOID_P EQUAL 8 AND WIN32) # This check is broken on linux+clang-cl if(NOT CMAKE_SIZEOF_VOID_P EQUAL 8 AND WIN32) # triggers when cross compiling on linux
message(FATAL_ERROR "Use a 64-bit generator/toolchain (x64).") message(FATAL_ERROR "Use a 64-bit generator/toolchain (x64).")
endif() endif()

View file

@ -43,7 +43,7 @@ cd .\build\Debug
MinecraftConsoles does not support Linux but can cross-compile a Windows build from Linux. MinecraftConsoles does not support Linux but can cross-compile a Windows build from Linux.
You will need a Windows MSVC SDK. You can get one from [msvc-wine](https://github.com/mstorsjo/msvc-wine). You will need a Windows MSVC SDK. You can get one from [msvc-wine](https://github.com/mstorsjo/msvc-wine) or from a real Visual Studio installation.
Configure: Configure:
``` ```