Add toolchain file for mingw32-w64

Used for compiling for Windows on a Linux host.
This commit is contained in:
prisixia 2023-05-24 20:01:40 +02:00
parent 7f2dbf80fb
commit 1d1f0cabac
Signed by: prisixia
GPG Key ID: CB939A148C9B4125
1 changed files with 7 additions and 0 deletions

7
mingw32-w64.cmake Normal file
View File

@ -0,0 +1,7 @@
set(CMAKE_SYSTEM_NAME Windows)
set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
set(CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32" "/usr/local/x86_64-w64-mingw32")
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
set(CMAKE_EXE_LINKER_FLAGS "-static -static-libgcc -static-libstdc++")