Přemysl Eric Janouch
89580f2113
No one bothered to ask whether it /should/ be done. The hamburger needs to be replaced with a file open dialog there.
16 lines
515 B
CMake
16 lines
515 B
CMake
set (CMAKE_SYSTEM_NAME "Windows")
|
|
set (CMAKE_SYSTEM_PROCESSOR "x86_64")
|
|
|
|
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")
|
|
|
|
# Not needed to crosscompile an installation package
|
|
#set (CMAKE_CROSSCOMPILING_EMULATOR "wine64")
|
|
|
|
set (CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")
|
|
|
|
set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|