summaryrefslogtreecommitdiff
path: root/cmake/Toolchain-MinGW-w64.cmake
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-01-31 13:57:51 +0100
committerskal <pascal.massimino@gmail.com>2026-01-31 13:57:51 +0100
commite3daca37aa134a6885c8ae5c508c3d7f7bfc600a (patch)
tree69578c5e3376603219bc341e8975e289cede9bdd /cmake/Toolchain-MinGW-w64.cmake
parent3af9f70bec1f50c980288e2213035693f4b737ce (diff)
Add Windows cross-compilation support (MinGW) and emulation (Wine)
Diffstat (limited to 'cmake/Toolchain-MinGW-w64.cmake')
-rw-r--r--cmake/Toolchain-MinGW-w64.cmake19
1 files changed, 19 insertions, 0 deletions
diff --git a/cmake/Toolchain-MinGW-w64.cmake b/cmake/Toolchain-MinGW-w64.cmake
new file mode 100644
index 0000000..57c146a
--- /dev/null
+++ b/cmake/Toolchain-MinGW-w64.cmake
@@ -0,0 +1,19 @@
+set(CMAKE_SYSTEM_NAME Windows)
+
+# Specify the cross compiler
+set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
+set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
+set(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres)
+
+# Where is the target environment located
+set(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32 /usr/local/opt/mingw-w64)
+
+# Adjust the default behavior of the FIND_XXX() commands:
+# search for headers and libraries in the target environment,
+# search for programs in the host environment
+set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
+set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
+set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
+
+# Define a flag to identify this specific build
+set(DEMO_CROSS_COMPILE_WIN32 ON)