doompanning/external/wildmidi-0.4.5/cmake/Toolchain-OSX-x86.cmake

19 lines
701 B
CMake
Raw Normal View History

# toolchain file I use to cross compile on Linux
# targetting OSX/Darwin (x86). running:
# cmake -DCMAKE_TOOLCHAIN_FILE=/path/to/Toolchain-OSX-x86.cmake ....
SET(CMAKE_SYSTEM_NAME Darwin)
SET(CMAKE_C_COMPILER /opt/cross_osx-x86/bin/i686-apple-darwin9-gcc)
SET(CMAKE_CXX_COMPILER /opt/cross_osx-x86/bin/i686-apple-darwin9-g++)
# where is the target environment
SET(CMAKE_FIND_ROOT_PATH /opt/cross_osx-x86)
# adjust the default behaviour of the FIND_XXX() commands:
# search headers and libraries in the target environment, search
# programs in the host environment
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)