diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-10-22 01:59:09 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-10-22 01:59:09 +0200 |
commit | 89580f2113a190494afd7e9454bad5275beda4c6 (patch) | |
tree | f943a49b7ae97e0fbd4d5d9c315099190f24e150 /cmake/Win64CrossToolchain.cmake | |
parent | c7b9d657977ae907aeacc40b1eca2cbfcbddb35c (diff) | |
download | tdv-89580f2113a190494afd7e9454bad5275beda4c6.tar.gz tdv-89580f2113a190494afd7e9454bad5275beda4c6.tar.xz tdv-89580f2113a190494afd7e9454bad5275beda4c6.zip |
sdgui: cross-compile for Windows
No one bothered to ask whether it /should/ be done.
The hamburger needs to be replaced with a file open dialog there.
Diffstat (limited to 'cmake/Win64CrossToolchain.cmake')
-rw-r--r-- | cmake/Win64CrossToolchain.cmake | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cmake/Win64CrossToolchain.cmake b/cmake/Win64CrossToolchain.cmake new file mode 100644 index 0000000..68214ec --- /dev/null +++ b/cmake/Win64CrossToolchain.cmake @@ -0,0 +1,15 @@ +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) |