From 26215d3245b7473ff6e52dddce4cc333376bfc0d Mon Sep 17 00:00:00 2001 From: rapturate Date: Tue, 9 Jun 2026 17:10:30 -0400 Subject: [PATCH] Made the Produciton release zip files for windows, macOS, and linux --- mingw-toolchain.cmake | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 mingw-toolchain.cmake diff --git a/mingw-toolchain.cmake b/mingw-toolchain.cmake deleted file mode 100644 index 203fa05..0000000 --- a/mingw-toolchain.cmake +++ /dev/null @@ -1,13 +0,0 @@ -# Target Operating System and Architecture Architecture Definitions -set(CMAKE_SYSTEM_NAME Windows) -set(CMAKE_SYSTEM_PROCESSOR x86_64) - -# Force specify cross-compilers -set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc) -set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++) - -# Adjust the find root path behavior (Look for dependencies in system cross spaces) -set(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32) -set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)