2012-10-13 19:07:56 +02:00
|
|
|
set (CMAKE_SYSTEM_NAME "Windows")
|
2021-10-21 19:16:01 +02:00
|
|
|
set (CMAKE_SYSTEM_PROCESSOR "x86_64")
|
2012-10-13 19:07:56 +02:00
|
|
|
|
2021-10-21 19:16:01 +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")
|
2012-10-13 19:07:56 +02:00
|
|
|
|
2017-06-19 00:03:44 +02:00
|
|
|
# Not needed to crosscompile an installation package
|
2021-10-21 21:53:20 +02:00
|
|
|
#set (CMAKE_CROSSCOMPILING_EMULATOR "wine64")
|
2017-06-19 00:03:44 +02:00
|
|
|
|
2021-10-21 19:16:01 +02:00
|
|
|
set (CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")
|
2012-10-13 19:07:56 +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)
|
|
|
|
|