Skip to content
Snippets Groups Projects
Select Git revision
  • ea5474da035064acd0bf8cb593cb80148f32ae98
  • master default protected
  • 72-improve-docs-for_optimal_setup
  • os-path-join
  • develop-GA
  • add-higher-spindown-components
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

DirectedMC_repeat.sh

Blame
  • 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)