# HG changeset patch # User Sebastien Jodogne # Date 1435658056 -7200 # Node ID 3e53edcd012010c2ffcb7f4072232515119ae379 # Parent ad94a3583b079a164478356b8728b1eb5d93092f toolchains for MinGW-w64 diff -r ad94a3583b07 -r 3e53edcd0120 Resources/MinGW-W64-Toolchain32.cmake --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Resources/MinGW-W64-Toolchain32.cmake Tue Jun 30 11:54:16 2015 +0200 @@ -0,0 +1,17 @@ +# the name of the target operating system +set(CMAKE_SYSTEM_NAME Windows) + +# which compilers to use for C and C++ +set(CMAKE_C_COMPILER i686-w64-mingw32-gcc) +set(CMAKE_CXX_COMPILER i686-w64-mingw32-g++) +set(CMAKE_RC_COMPILER i686-w64-mingw32-windres) + +# here is the target environment located +set(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32) + +# adjust the default behaviour of the FIND_XXX() commands: +# search headers and libraries in the target environment, search +# programs in the host environment +set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) +set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) +set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) diff -r ad94a3583b07 -r 3e53edcd0120 Resources/MinGW-W64-Toolchain64.cmake --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Resources/MinGW-W64-Toolchain64.cmake Tue Jun 30 11:54:16 2015 +0200 @@ -0,0 +1,17 @@ +# the name of the target operating system +set(CMAKE_SYSTEM_NAME Windows) + +# which compilers to use for C and C++ +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) + +# here is the target environment located +set(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32) + +# adjust the default behaviour of the FIND_XXX() commands: +# search headers and libraries in the target environment, search +# programs in the host environment +set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) +set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) +set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) diff -r ad94a3583b07 -r 3e53edcd0120 Resources/MinGW64Toolchain.cmake --- a/Resources/MinGW64Toolchain.cmake Mon Jun 29 17:47:34 2015 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -# http://sourceforge.net/apps/trac/mingw-w64/wiki/GeneralUsageInstructions - -# the name of the target operating system -set(CMAKE_SYSTEM_NAME Windows) - -# Detect the prefix of the mingw-w64 compiler -execute_process( - COMMAND uname -p - OUTPUT_VARIABLE MINGW64_ARCHITECTURE - OUTPUT_STRIP_TRAILING_WHITESPACE - ) - -if (${MINGW64_ARCHITECTURE} STREQUAL "x86_64") - set(MINGW64_PREFIX "x86_64") -else() - set(MINGW64_PREFIX "i686") -endif() - -# which compilers to use for C and C++ -set(CMAKE_C_COMPILER ${MINGW64_PREFIX}-w64-mingw32-gcc) -set(CMAKE_CXX_COMPILER ${MINGW64_PREFIX}-w64-mingw32-g++) -set(CMAKE_RC_COMPILER ${MINGW64_PREFIX}-w64-mingw32-windres) - -# here is the target environment located -set(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32) - -# adjust the default behaviour of the FIND_XXX() commands: -# search headers and libraries in the target environment, search -# programs in the host environment -set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) diff -r ad94a3583b07 -r 3e53edcd0120 Resources/MinGWToolchain.cmake --- a/Resources/MinGWToolchain.cmake Mon Jun 29 17:47:34 2015 +0200 +++ b/Resources/MinGWToolchain.cmake Tue Jun 30 11:54:16 2015 +0200 @@ -1,5 +1,3 @@ -# http://www.vtk.org/Wiki/CmakeMingw - # the name of the target operating system set(CMAKE_SYSTEM_NAME Windows)