]> granicus.if.org Git - multimarkdown/commitdiff
add 32 bit flag to older MinGW toolchain
authorFletcher T. Penney <fletcher@fletcherpenney.net>
Mon, 16 Nov 2015 01:55:25 +0000 (20:55 -0500)
committerFletcher T. Penney <fletcher@fletcherpenney.net>
Mon, 16 Nov 2015 01:55:25 +0000 (20:55 -0500)
tools/Toolchain-MinGW-w64-32bit.cmake
tools/Toolchain-MinGW-w64-64bit.cmake
tools/Toolchain-mingw32.cmake

index 17347e027d9c583a697cca40be893d2eb1603dbe..db5c42745ced5a8114310619f4816d6747789db0 100644 (file)
@@ -1,5 +1,8 @@
 # Settings for compiling for Windows 32-bit machines using MinGW-w64
 
+set (IS_CROSSCOMPILING "YES")
+set (IS_32_BIT "32-")
+
 set (CMAKE_SYSTEM_NAME Windows)
 
 set (CMAKE_C_COMPILER i686-w64-mingw32-gcc)
index 9d2b4f8994f3c637e415e7fb542f2dccecc61002..2acb26d8459a2f70c7ff9af3a78bbdb3f22c3ead 100644 (file)
@@ -1,5 +1,7 @@
 # Settings for compiling for Windows 64-bit machines using MinGW-w64
 
+set (IS_CROSSCOMPILING "YES")
+
 set (CMAKE_SYSTEM_NAME Windows)
 
 set (CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
index f5295804c83335f43ea94df8a55ff5ab4064be51..3e807ba08d0af46f57b7e0c35e50b23994e9ddeb 100644 (file)
@@ -1,4 +1,7 @@
-# Settings for compiling under MinGW32
+# Settings for compiling for Windows 32-bit machines
+
+set (IS_CROSSCOMPILING "YES")
+set (IS_32_BIT "32-")
 
 set (CMAKE_SYSTEM_NAME Windows)