summaryrefslogtreecommitdiffhomepage
path: root/cmake/toolchains/i686-w64-mingw32.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/toolchains/i686-w64-mingw32.cmake')
-rw-r--r--cmake/toolchains/i686-w64-mingw32.cmake11
1 files changed, 6 insertions, 5 deletions
diff --git a/cmake/toolchains/i686-w64-mingw32.cmake b/cmake/toolchains/i686-w64-mingw32.cmake
index 30df69e..b4d66eb 100644
--- a/cmake/toolchains/i686-w64-mingw32.cmake
+++ b/cmake/toolchains/i686-w64-mingw32.cmake
@@ -6,19 +6,20 @@
# Or use CMAKE_TOOLCHAIN_FILE variable.
set(CMAKE_SYSTEM_NAME Windows)
+set(CMAKE_SYSTEM_PROCESSOR i686)
set(CMAKE_CROSSCOMPILING ON)
+set(TOOLCHAIN_DIR "${CMAKE_CURRENT_LIST_DIR}")
-find_program(WINE wine)
-if(WINE)
- set(CMAKE_CROSSCOMPILING_EMULATOR ${WINE})
-endif()
+set(CMAKE_CROSSCOMPILING_EMULATOR "${TOOLCHAIN_DIR}/i686-w64-mingw32-wine")
set(TOOLCHAIN_PREFIX i686-w64-mingw32)
set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}-gcc)
set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}-g++)
set(CMAKE_RC_COMPILER ${TOOLCHAIN_PREFIX}-windres)
+set(CMAKE_MC_COMPILER ${TOOLCHAIN_PREFIX}-windmc)
set(CMAKE_FIND_ROOT_PATH /usr/${TOOLCHAIN_PREFIX})
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
-set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) \ No newline at end of file
+set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
+set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)