summaryrefslogtreecommitdiff
path: root/modules/mono/config.py
AgeCommit message (Collapse)Author
2018-03-19Fix mono build properly!PJB3005
Fixes the mistake I made in #17603 to make it require Python > 3.6.
2018-03-18Fix Mono builds with Python 3.Pieter-Jan Briers
A subprocess call wasn't specifying an encoding, so this gave a TypeError in Python 3.
2018-02-27More reliably find mscorlib.dll on LinuxHein-Pieter van Braam
2018-02-27Merge pull request #15641 from ↵Rémi Verschelde
neikeq/mono-is-picky-regarding-corlib-so-we-must-make-sure-to-ship-the-right-version-otherwise-something-bad-may-happen Mono: Buildsystem improvements
2018-02-03Fix pkgconfig detection of monoBenjamin Dobell
2018-01-12Mono: Buildsystem improvementsIgnacio Etcheverry
- Bundle with mscorlib.dll to avoid compatibilities issues - Add build option 'mono_assemblies_output_dir' to specify the output directory where the assemblies will be copied to. '#bin' by default.
2017-11-15doc: Make all module docs self-containedRémi Verschelde
2017-11-01-Modules can now add custom version info (added it for Mono)Juan Linietsky
-Version string takes this version info -Ability to download templates from the interweb (listing does not work yet)
2017-10-29Buildsystem improvements for the Mono moduleIgnacio Etcheverry
- Make sure to search the mono installation directory for the right architecture in the windows registry. - Do not build GodotSharpTools directly to #bin dir. Instead build to the default output path and copy it. This way we avoid MSBuild adding files we don't want to #bin. - Add hint path for MSBuild in OSX. - Copy shared library on Unix if not statically linking. - Use vswhere to search MSBuild and search for 14.0 tools version in the registry instead of 4.0. - SCons will only fallback xbuild when msbuild is not found if 'xbuild_fallback=yes' is passed to the command. - Use mono's assembly path as FrameworkPathOverride if using with system's MSBuild (not mono's fork). - Cleanup.
2017-10-20Mono: Fix static linking on macOSRémi Verschelde
[ci skip]
2017-10-14mono: Request monosgen-2 explicitly via pkg-configRémi Verschelde
Prevents GC mismatch between mono binary and library, fixes #11916.
2017-10-03Added mono moduleIgnacio Etcheverry