aboutsummaryrefslogtreecommitdiff
path: root/ToolchainDebianMinGWW64.cmake
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2012-10-13 19:07:56 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2013-01-08 02:46:07 +0100
commit48d353a5cb22e596f12946ef7202e9946679e2c8 (patch)
treeafe2ff2ab2f97f3be32afa99cb24fa374a0607d3 /ToolchainDebianMinGWW64.cmake
parent313a47843fc40e461a67149cf1f40be0a90385d7 (diff)
downloadlogdiag-48d353a5cb22e596f12946ef7202e9946679e2c8.tar.gz
logdiag-48d353a5cb22e596f12946ef7202e9946679e2c8.tar.xz
logdiag-48d353a5cb22e596f12946ef7202e9946679e2c8.zip
Make MinGW{,-w64} crosscompilation working.
Also fix the 7za download path in Win32Depends.cmake.
Diffstat (limited to 'ToolchainDebianMinGWW64.cmake')
-rw-r--r--ToolchainDebianMinGWW64.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/ToolchainDebianMinGWW64.cmake b/ToolchainDebianMinGWW64.cmake
new file mode 100644
index 0000000..a1f4378
--- /dev/null
+++ b/ToolchainDebianMinGWW64.cmake
@@ -0,0 +1,13 @@
+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")
+
+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)
+