summaryrefslogtreecommitdiff
path: root/cmake/Toolchain-mingw64.cmake
blob: 2e114898ce1d9ccb9f24d4c04acb4b27a14f11b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Toolchain configuration for SUSE/Fedora like MinGW32 setup

# the name of the target operating system
SET(CMAKE_SYSTEM_NAME Windows)

# which compilers to use for C and C++
SET(CMAKE_C_COMPILER x86_64-pc-mingw32-gcc)
SET(CMAKE_CXX_COMPILER x86_64-pc-mingw32-g++)
SET(CMAKE_AR x86_64-pc-mingw32-ar)
SET(CMAKE_LD x86_64-pc-mingw32-ld)
SET(CMAKE_NM x86_64-pc-mingw32-nm)
SET(CMAKE_OBJCOPY x86_64-pc-mingw32-objcopy)
SET(CMAKE_OBJDUMP x86_64-pc-mingw32-objdump)
SET(CMAKE_RANLIB x86_64-pc-mingw32-ranlib)
SET(CMAKE_STRIP x86_64-pc-mingw32-strip)

# here is the target environment located
SET(CMAKE_FIND_ROOT_PATH  /usr/x86_64-pc-mingw32/sys-root/mingw/)

# adjust the default behaviour of the FIND_XXX() commands:
# search headers and libraries in the target environment, search 
# programs in the host environment
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)

# Windows libraries names
set(WIN_LIB_ICONV) # builtin
set(WIN_LIB_INTL libintl-8.dll)
set(WIN_LIB_CURL libcurl-4.dll libidn-11.dll libnspr4.dll nss3.dll libssh2-1.dll ssl3.dll zlib1.dll nssutil3.dll libplc4.dll libplds4.dll libgcrypt-11.dll libgpg-error-0.dll)
set(WIN_LIB_MYSQL libmysql.dll)
set(WIN_LIB_PGSQL libpq.dll)
set(WIN_LIB_GLIB libglib-2.0-0.dll libgobject-2.0-0.dll libgthread-2.0-0.dll)

# Disable pkg-config lookups
set(PKG_CONFIG_EXECUTABLE /bin/false)