2012-04-03 07:48:44 +02:00
|
|
|
# name of the target operating system
|
2014-06-15 15:34:22 +02:00
|
|
|
SET(CMAKE_SYSTEM_NAME Windows)
|
2012-04-03 07:48:44 +02:00
|
|
|
|
|
|
|
# which compilers to use for C and C++
|
2024-02-16 21:36:19 +01:00
|
|
|
SET(CMAKE_C_COMPILER i686-w64-mingw32-clang)
|
|
|
|
SET(CMAKE_CXX_COMPILER i686-w64-mingw32-clang++)
|
2019-06-21 02:43:59 +02:00
|
|
|
SET(CMAKE_RC_COMPILER i686-w64-mingw32-windres)
|
2012-04-03 07:48:44 +02:00
|
|
|
|
|
|
|
# here is the target environment located
|
2019-06-21 02:43:59 +02:00
|
|
|
SET(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32)
|
2012-04-03 07:48:44 +02:00
|
|
|
|
2022-11-09 17:57:19 +01:00
|
|
|
# adjust the default behavior of the FIND_XXX() commands:
|
2012-04-03 07:48:44 +02:00
|
|
|
# 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)
|