Cmake toolchain file for cross compilation to windows

(copied from the Yabause one)


git-svn-id: https://yabause.svn.sourceforge.net/svnroot/yabause/trunk@2706 d7be59e3-070e-4b9a-85a1-4646befae34d
This commit is contained in:
yabause 2011-11-22 20:45:00 +00:00
parent d59c5110ca
commit 02cd9ac9d4

View File

@ -0,0 +1,12 @@
SET(CMAKE_SYSTEM_NAME Windows)
SET(CMAKE_SYSTEM_VERSION 1)
SET(CMAKE_C_COMPILER i686-w64-mingw32-gcc)
SET(CMAKE_CXX_COMPILER i686-w64-mingw32-g++)
SET(CMAKE_RC_COMPILER i686-w64-mingw32-windres)
SET(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32)
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)