CMake: move MinGW toolchain file to new cmake/toolchains directory
This commit is contained in:
parent
03de31972c
commit
e54cdbbb43
2 changed files with 2 additions and 2 deletions
17
cmake/toolchains/i686-w64-mingw32.cmake
Normal file
17
cmake/toolchains/i686-w64-mingw32.cmake
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# CMake Toolchain file for cross-compiling PortAudio to i686-w64-mingw32
|
||||
# Inspired from: https://gitlab.kitware.com/cmake/community/-/wikis/doc/cmake/cross_compiling/Mingw
|
||||
# Example usage: $ cmake -DCMAKE_TOOLCHAIN_FILE=cmake/toolchains/i686-w64-mingw32.cmake .
|
||||
# i686-w64-mingw32 needs to be installed for this to work. On Debian-based
|
||||
# distributions the package is typically named `mingw-w64`.
|
||||
|
||||
SET(CMAKE_SYSTEM_NAME Windows)
|
||||
|
||||
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)
|
||||
Loading…
Reference in a new issue