blob: 864c0ebe4d4e9dda9f8326c427cea4bd46700aa2 [file] [log] [blame]
Randy Abernethyded64012015-02-15 11:28:40 -08001# CMake mingw32 cross compile toolchain file
2
3# the name of the target operating system
4SET(CMAKE_SYSTEM_NAME Windows)
5
6# which compilers to use for C and C++
7SET(CMAKE_C_COMPILER i586-mingw32msvc-gcc)
8SET(CMAKE_CXX_COMPILER i586-mingw32msvc-g++)
9SET(CMAKE_RC_COMPILER i586-mingw32msvc-windres)
10
11# here is the target environment located
12SET(CMAKE_FIND_ROOT_PATH /usr/i586-mingw32msvc)
13
14# adjust the default behaviour of the FIND_XXX() commands:
15# search headers and libraries in the target environment, search
16# programs in the host environment
17set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
18set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
19set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
Roger Meiere46ec452015-05-17 00:35:52 +020020
21set(BUILD_SHARED_LIBS OFF)
22SET(CMAKE_EXE_LINKER_FLAGS "-static")
23set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} "-static-libgcc")
24set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-static-libstdc++")