glfw/CMake
2012-03-22 16:57:38 +01:00
..
linux-amd64-mingw32msvc.cmake Added initial Linux MinGW-w64 support. 2012-03-22 16:57:38 +01:00
linux-i586-mingw32msvc.cmake Gave CMake toolchain file clearer name. 2012-03-01 17:03:42 +01:00
linux-i686-pc-mingw32.cmake Moved additional CMake files into the CMake directory. 2010-10-03 20:02:37 +02:00
README.txt Updated toolchain file README. 2012-03-01 17:15:37 +01:00

This directory contains a collection of toolchain definitions for cross
compilation, currently limited to compiling Win32 binaries on Linux.

The toolchain file naming scheme is as follows:

  host-system-compiler.cmake

To use these files you add a special parameter when configuring the source tree:

  cmake -DCMAKE_TOOLCHAIN_FILE=<toolchain-file> .

For example, to use the Debian GNU/Linux MinGW package, run CMake like this:

  cmake -DCMAKE_TOOLCHAIN_FILE=CMake/linux-i586-mingw32msvc.cmake .

For more details see this article:

  http://www.paraview.org/Wiki/CMake_Cross_Compiling