From 04a1a446cf845a0db80d39fd0e42771aa07e4492 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Fri, 5 Dec 2014 15:54:19 +0100 Subject: Build for win32 & win64 on Travis too --- util/travis/toolchain_mingw.cmake.in | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 util/travis/toolchain_mingw.cmake.in (limited to 'util/travis/toolchain_mingw.cmake.in') diff --git a/util/travis/toolchain_mingw.cmake.in b/util/travis/toolchain_mingw.cmake.in new file mode 100644 index 000000000..44830eb60 --- /dev/null +++ b/util/travis/toolchain_mingw.cmake.in @@ -0,0 +1,17 @@ +# name of the target operating system +SET(CMAKE_SYSTEM_NAME Windows) + +# which compilers to use for C and C++ +SET(CMAKE_C_COMPILER %PREFIX%-gcc) +SET(CMAKE_CXX_COMPILER %PREFIX%-g++) +SET(CMAKE_RC_COMPILER %PREFIX%-windres) + +# here is the target environment located +SET(CMAKE_FIND_ROOT_PATH %ROOTPATH%) + +# 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) -- cgit v1.2.3