Mercurial > hg > orthanc
view Resources/MinGW64Toolchain.cmake @ 561:ded40a9e8cc8 laaw
patches for lsb
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 23 Sep 2013 17:52:38 +0200 |
parents | a3d9acf37161 |
children | ec2c2411d4db |
line wrap: on
line source
# 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) SET(CMAKE_RC_COMPILE_OBJECT "${CMAKE_RC_COMPILER} -O coff -I${CMAKE_CURRENT_SOURCE_DIR} <SOURCE> <OBJECT>")