aboutsummaryrefslogtreecommitdiff
path: root/ToolchainCrossMinGWW64.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'ToolchainCrossMinGWW64.cmake')
-rw-r--r--ToolchainCrossMinGWW64.cmake16
1 files changed, 16 insertions, 0 deletions
diff --git a/ToolchainCrossMinGWW64.cmake b/ToolchainCrossMinGWW64.cmake
new file mode 100644
index 0000000..f72e903
--- /dev/null
+++ b/ToolchainCrossMinGWW64.cmake
@@ -0,0 +1,16 @@
+set (CMAKE_SYSTEM_NAME "Windows")
+set (CMAKE_SYSTEM_PROCESSOR "x86")
+
+set (CMAKE_C_COMPILER "i686-w64-mingw32-gcc")
+set (CMAKE_CXX_COMPILER "i686-w64-mingw32-g++")
+set (CMAKE_RC_COMPILER "i686-w64-mingw32-windres")
+
+# Not needed to crosscompile an installation package
+#set (CMAKE_CROSSCOMPILING_EMULATOR "wine")
+
+set (CMAKE_FIND_ROOT_PATH "/usr/i686-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)
+