Mercurial > hg > orthanc
changeset 1431:3e53edcd0120
toolchains for MinGW-w64
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 30 Jun 2015 11:54:16 +0200 |
parents | ad94a3583b07 |
children | 0ac74fa21db8 |
files | Resources/MinGW-W64-Toolchain32.cmake Resources/MinGW-W64-Toolchain64.cmake Resources/MinGW64Toolchain.cmake Resources/MinGWToolchain.cmake |
diffstat | 4 files changed, 34 insertions(+), 34 deletions(-) [+] |
line wrap: on
line diff
--- /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)
--- /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)
--- 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)