minetest/util/travis/toolchain_mingw.cmake.in

19 lines
571 B
CMake
Raw Normal View History

# Target operating system name
set(CMAKE_SYSTEM_NAME Windows)
2014-12-05 15:54:19 +01:00
# Compilers to use
set(CMAKE_C_COMPILER %PREFIX%-gcc)
set(CMAKE_CXX_COMPILER %PREFIX%-g++)
set(CMAKE_RC_COMPILER %PREFIX%-windres)
2014-12-05 15:54:19 +01:00
# Location of the target environment
set(CMAKE_FIND_ROOT_PATH %ROOTPATH%)
2014-12-05 15:54:19 +01:00
# Adjust the default behaviour of the FIND_XXX() commands:
# search for headers and libraries in the target environment,
# search for programs in the host environment
2014-12-05 15:54:19 +01:00
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)