comparison Resources/MinGWToolchain.cmake @ 3:d5027f9f676a

fix build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 01 Jun 2015 15:12:22 +0200
parents
children
comparison
equal deleted inserted replaced
2:8f22ed9d48d5 3:d5027f9f676a
1 # http://www.vtk.org/Wiki/CmakeMingw
2
3 # the name of the target operating system
4 set(CMAKE_SYSTEM_NAME Windows)
5
6 # which compilers to use for C and C++
7 set(CMAKE_C_COMPILER i586-mingw32msvc-gcc)
8 set(CMAKE_CXX_COMPILER i586-mingw32msvc-g++)
9 set(CMAKE_RC_COMPILER i586-mingw32msvc-windres)
10
11 # here is the target environment located
12 set(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
17 set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
18 set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
19 set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)