2010-07-27 23:55:52 +00:00
|
|
|
|
|
|
|
SET(ARCH i386)
|
|
|
|
|
2010-07-27 16:00:40 +00:00
|
|
|
# Choose the right MinGW prefix
|
2010-07-27 17:36:25 +00:00
|
|
|
if (CMAKE_HOST_SYSTEM_NAME MATCHES Windows)
|
2010-07-27 16:00:40 +00:00
|
|
|
set(MINGW_PREFIX "")
|
|
|
|
else()
|
|
|
|
set(MINGW_PREFIX "mingw32-")
|
|
|
|
endif()
|
|
|
|
|
2010-07-25 17:03:07 +00:00
|
|
|
# the name of the target operating system
|
|
|
|
SET(CMAKE_SYSTEM_NAME Windows)
|
2010-07-27 17:36:25 +00:00
|
|
|
SET(CMAKE_SYSTEM_PROCESSOR i686)
|
2010-07-25 17:03:07 +00:00
|
|
|
|
|
|
|
# which compilers to use for C and C++
|
2010-07-27 16:00:40 +00:00
|
|
|
SET(CMAKE_C_COMPILER ${MINGW_PREFIX}gcc)
|
|
|
|
SET(CMAKE_CXX_COMPILER ${MINGW_PREFIX}g++)
|
2010-07-25 17:03:07 +00:00
|
|
|
|
2010-07-27 23:55:52 +00:00
|
|
|
SET(CMAKE_ASM_COMPILER ${MINGW_PREFIX}gcc)
|
|
|
|
|
2010-07-25 17:03:07 +00:00
|
|
|
# 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)
|