2019-04-01 17:38:02 +02:00
|
|
|
# Define the environment for cross-compiling with 64-bit MinGW-w64 GCC
|
2012-06-03 16:51:12 +02:00
|
|
|
SET(CMAKE_SYSTEM_NAME Windows) # Target system name
|
|
|
|
SET(CMAKE_SYSTEM_VERSION 1)
|
2012-06-17 16:35:48 +02:00
|
|
|
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")
|
|
|
|
SET(CMAKE_RANLIB "x86_64-w64-mingw32-ranlib")
|
2012-06-03 16:51:12 +02:00
|
|
|
|
2017-11-17 04:34:18 +01:00
|
|
|
# Configure the behaviour of the find commands
|
2012-06-17 16:35:48 +02:00
|
|
|
SET(CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")
|
2012-06-03 16:51:12 +02:00
|
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|