blob: 68ee24977a7043c5b1263f8d354eeec0fc06fbde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Simple toolchain file for cross-building Windows Puzzles on Linux
# using MinGW (tested on Debian).
set(CMAKE_SYSTEM_NAME Windows)
set(CMAKE_SYSTEM_PROCESSOR x86_64)
set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
set(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres)
set(CMAKE_AR x86_64-w64-mingw32-ar)
set(CMAKE_RANLIB x86_64-w64-mingw32-ranlib)
add_compile_definitions(MINGW32_FIX)
|