Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • mingw_gcc44
  • release_ABP1_012
  • release_ABP1_008
  • release_ABP1_006
  • release_ABP1_007
  • release_ABP1_005
  • release_ABP1_004
  • release_ABP1_003
  • pre_release_0.15
  • release_ABP1_001
  • release_ABP1_002
  • pre_release_0.13
  • pre_release_0.14
  • pre_release_0.11
  • pre_release_0.12
  • pre_release_0.10
  • pre_release_0.09
  • pre_release_0.08
19 results

toolchain-linux-mingw.oglft.cmake

Blame
  • Forked from einsteinathome / graphicsframework
    135 commits behind the upstream repository.
    toolchain-linux-mingw.oglft.cmake 580 B
    # the name of the target operating system
    SET(CMAKE_SYSTEM_NAME Windows)
    
    # which compilers to use for C and C++
    SET(CMAKE_C_COMPILER   i586-pc-mingw32-gcc)
    SET(CMAKE_CXX_COMPILER i586-pc-mingw32-g++)
    
    # here is the target environment located
    SET(CMAKE_FIND_ROOT_PATH  ${OGLFT_INSTALL})
    
    # 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 ONLY)
    SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
    SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)