# CMake Toolchain file for cross-compiling to Windows using MinGW-w64 set(CMAKE_SYSTEM_NAME Windows) set(CMAKE_SYSTEM_PROCESSOR x86_64) # Specify the cross compiler set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc-posix) set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++-posix) set(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres) # Target environment on the build host system set(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32) # Adjust the default behaviour of the FIND_XXX() commands: # search headers and libraries in the target environment set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) # Search programs in the host environment set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)