| Commit message (Collapse) | Author | Age |
|
|
|
| |
It stopped working with (at least) the last commit.
|
|
|
| |
Co-authored-by: sfan5 <sfan5@live.de>
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Supporting these is not reasonable anymore and effectively we didn't
do that anyway, brokenness was only noticed by chance and a PR to restore
support for gcc 5.x is ready now.
|
|
|
|
|
|
|
|
| |
use SSE for floating-point operations to avoid issues with improper fp-rounding and
loss of precision when moving fp-data to incompatible or less-precise
registers/storage locations
https://gcc.gnu.org/wiki/FloatingPointMath
https://gcc.gnu.org/wiki/x87note
|
| |
|
| |
|
|
|
| |
Co-authored-by: SmallJoker <SmallJoker@users.noreply.github.com>
|
|
|
|
|
| |
This makes the installation process honor system-specific
directories (e.g. ${PREFIX}/man instead of ${PREFIX}/share/man on
BSD).
|
| |
|
| |
|
|
|
| |
closes #11564
|
| |
|
|
|
|
| |
With the CMake changes to IrrlichtMt, it's now possible to use a target for IrrlichtMt.
Besides greatly improving the ease of setting up IrrlichtMt for users building the client, it removes the need for Minetest's CMake to include transitive dependencies such as image libraries, cleaning it up a tiny bit. The PR works by finding the IrrlichtMt package and linking to the target it provides. If the package isn't found and it isn't building the client, it will still fall back to using just the headers of old Irrlicht or IrrlichtMt.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Use user provided lib/irrlichtmt if available
Make it possible for a user to provide the IrrlichtMt dependency as
subdirectory at `lib/irrlichtmt`.
The subdirectory is added with the `EXCLUDE_FROM_ALL` flag to prevent
`libirrlichtmt.a` or other header files to be installed.
This enables the user to do the following to satisfy the IrrlichtMt
dependency:
git clone --depth 1 https://github.com/minetest/irrlicht.git lib/irrlichtmt
cmake . -DRUN_IN_PLACE=TRUE
|
| |
|
| |
|
| |
|
|
|
|
| |
-> https://github.com/minetest/irrlicht
|
| |
|
| |
|
| |
|
|
|
| |
fixes #10806
|
| |
|
|
|
| |
This changes the installer to create its own Minetest folder instead of having the user create it themselves. This prevents spewing the contents of Minetest everywhere when users change the install directory and expect the installer to create a folder to put it in
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
Other established FOSS projects don't seem to be doing this.
|
| |
|
| |
|
|
|
|
| |
fixes #9104
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Create CPack WIX msi Installer for RUN_IN_PLACE=0 builds
Correct paths on Windows for RUN_IN_PLACE=0
Install only required font files
Games have their own components, and "minimal" is optional
|
|
|
|
| |
* Version scheme change: 0.5.0 -> 5.0.0
|
|
|
| |
GCC 4.9 and Clang 3.4 are the minimum
|
|
|
|
|
|
|
| |
* Version changes: current dev version is now 0.5.0
* This change permit to have multi branches with various versions
* Dev version is 0.5.0-dev and next release will be 0.5.0
|
| |
|
|
|
|
|
|
|
| |
(#5976)
* mods/mods_here.txt should be present on servers
* client/serverlist/ can be omitted for RUN_IN_PLACE=0
* clientmods/ is not used on servers
|
|
|
|
|
|
|
|
|
|
|
| |
* Move GCC to GCC 6 & GCC 7
* Move Clang to Clang 3.6 & Clang 4.0
* LINT moves from Clang 3.9 to Clang 4.0
* Move XCode 7.3 to 8.0
* Use more travis tricks to install compilers instead of adding complexity to our build script
* Clang format fixes on checked files (compat Cpp11 instead of Cpp03)
* Mingw GCC update from 4.8.4 to 5.3 (Ubuntu Xenial)
* Drop mingw cmake generated files and add them to gitignore
|