toolchain-mingw-w64.cmake 632 B

1234567891011121314151617
  1. set(CMAKE_SYSTEM_NAME Windows)
  2. set(TOOLCHAIN_PREFIX x86_64-w64-mingw32)
  3. # cross compilers to use for C and C++
  4. set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}-gcc)
  5. set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}-g++)
  6. # target environment on the build host system
  7. set(CMAKE_FIND_ROOT_PATH /usr/${TOOLCHAIN_PREFIX} /usr/lib/gcc/${TOOLCHAIN_PREFIX})
  8. # modify default behavior of FIND_XXX() commands to
  9. # search for headers/libs in the target environment and
  10. # search for programs in the build host environment
  11. set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
  12. set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
  13. set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)