Welcome to mirror list, hosted at ThFree Co, Russian Federation.

toolchain-mingw.cmake « cmake - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e0bc6690056714e8023de994bf0dc39bf14b897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Simple toolchain file for cross-building Windows PuTTY on Linux
# using MinGW (tested on Ubuntu).

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(__USE_MINGW_ANSI_STDIO)