aboutsummaryrefslogtreecommitdiff
path: root/util/buildbot/toolchain_mingw64.cmake
diff options
context:
space:
mode:
authorPierre-Yves Rollo <dev@pyrollo.com>2019-06-21 02:43:59 +0200
committerrubenwardy <rw@rubenwardy.com>2019-06-21 01:46:00 +0100
commit39c54e13c3ee3558f330f4d5716d8073b48de11a (patch)
tree83338890c7b9d6a3e8c3753c15ded42c74688a4c /util/buildbot/toolchain_mingw64.cmake
parente3738c2f61b4ebff97eadce88dda10c9a7610d3d (diff)
downloadminetest-39c54e13c3ee3558f330f4d5716d8073b48de11a.tar.gz
minetest-39c54e13c3ee3558f330f4d5716d8073b48de11a.tar.bz2
minetest-39c54e13c3ee3558f330f4d5716d8073b48de11a.zip
Improve buildbot script
PR created under the employment of EvidenceBKidscode * Variables to set git repositories urls (allows to build from another repo) * Variables to set git branch to build from (allows to build from non-master branch) * Variables to change built name * Make -j uses the proper number of processors (autodetect) * Changed toolchain from win32 to adpat it to non-debian distros
Diffstat (limited to 'util/buildbot/toolchain_mingw64.cmake')
-rw-r--r--util/buildbot/toolchain_mingw64.cmake17
1 files changed, 0 insertions, 17 deletions
diff --git a/util/buildbot/toolchain_mingw64.cmake b/util/buildbot/toolchain_mingw64.cmake
deleted file mode 100644
index 9a7ed82d8..000000000
--- a/util/buildbot/toolchain_mingw64.cmake
+++ /dev/null
@@ -1,17 +0,0 @@
-# name of the target operating system
-SET(CMAKE_SYSTEM_NAME Windows)
-
-# which compilers to use for C and C++
-SET(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
-SET(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
-SET(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres)
-
-# here is the target environment located
-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, 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)