glfw/CMake/amd64-mingw32msvc.cmake

14 lines
567 B
CMake
Raw Normal View History

2012-06-03 14:53:51 +00:00
# Define the environment for cross compiling from Linux to Win64
SET(CMAKE_SYSTEM_NAME Windows)
SET(CMAKE_SYSTEM_VERSION 1)
2012-03-22 13:58:14 +00:00
SET(CMAKE_C_COMPILER "amd64-mingw32msvc-gcc")
SET(CMAKE_CXX_COMPILER "amd64-mingw32msvc-g++")
2012-06-03 14:53:51 +00:00
SET(CMAKE_RC_COMPILER "amd64-mingw32msvc-windres")
2012-03-22 13:58:14 +00:00
SET(CMAKE_RANLIB "amd64-mingw32msvc-ranlib")
2012-06-03 14:53:51 +00:00
# Configure the behaviour of the find commands
2012-03-22 13:58:14 +00:00
SET(CMAKE_FIND_ROOT_PATH "/usr/amd64-mingw32msvc")
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)