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

toolchain-mingw32.cmake « script - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2536b01c32ac1d46e388d39ff94c9f1c2bea21de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# CMake toolchain file for Win32 cross-compile
SET(CMAKE_SYSTEM_NAME Windows)

SET(CMAKE_C_COMPILER i586-mingw32msvc-gcc)
SET(CMAKE_RC_COMPILER i586-mingw32msvc-windres)

SET(CMAKE_FIND_ROOT_PATH /usr/i586-mingw32msvc)

SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)

SET(ENV{PKG_CONFIG_LIBDIR} ${CMAKE_FIND_ROOT_PATH}/lib/pkgconfig)