diff options
author | Pierre-Yves Rollo <dev@pyrollo.com> | 2019-06-21 02:43:59 +0200 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2019-06-21 01:46:00 +0100 |
commit | 39c54e13c3ee3558f330f4d5716d8073b48de11a (patch) | |
tree | 83338890c7b9d6a3e8c3753c15ded42c74688a4c /util/buildbot/toolchain_x86_64-w64-mingw32.cmake | |
parent | e3738c2f61b4ebff97eadce88dda10c9a7610d3d (diff) | |
download | minetest-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_x86_64-w64-mingw32.cmake')
-rw-r--r-- | util/buildbot/toolchain_x86_64-w64-mingw32.cmake | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/util/buildbot/toolchain_x86_64-w64-mingw32.cmake b/util/buildbot/toolchain_x86_64-w64-mingw32.cmake new file mode 100644 index 000000000..9a7ed82d8 --- /dev/null +++ b/util/buildbot/toolchain_x86_64-w64-mingw32.cmake @@ -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 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) |