aboutsummaryrefslogtreecommitdiff
path: root/ToolchainCrossWin64.cmake
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-10-21 19:16:01 +0200
committerPřemysl Eric Janouch <p@janouch.name>2021-10-21 19:38:37 +0200
commit8ac267c8db771bf87111e29f0511b26e145819fa (patch)
treeb57cc0f71df377c8b94bf300f9829f645906e8d5 /ToolchainCrossWin64.cmake
parent45dd1a4a8677b885424d1f1b7498d1c9d9517d04 (diff)
downloadlogdiag-8ac267c8db771bf87111e29f0511b26e145819fa.tar.gz
logdiag-8ac267c8db771bf87111e29f0511b26e145819fa.tar.xz
logdiag-8ac267c8db771bf87111e29f0511b26e145819fa.zip
Figure out how to abuse MSYS2 repositories
In the end, all seems to work fairly well on Windows 10.
Diffstat (limited to 'ToolchainCrossWin64.cmake')
-rw-r--r--ToolchainCrossWin64.cmake16
1 files changed, 16 insertions, 0 deletions
diff --git a/ToolchainCrossWin64.cmake b/ToolchainCrossWin64.cmake
new file mode 100644
index 0000000..a562ed0
--- /dev/null
+++ b/ToolchainCrossWin64.cmake
@@ -0,0 +1,16 @@
+set (CMAKE_SYSTEM_NAME "Windows")
+set (CMAKE_SYSTEM_PROCESSOR "x86_64")
+
+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")
+
+# Not needed to crosscompile an installation package
+#set (CMAKE_CROSSCOMPILING_EMULATOR "wine")
+
+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)
+