# 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)
# 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)
-# 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)