summaryrefslogtreecommitdiffstats
path: root/modules/mono/build_scripts/mono_reg_utils.py
Commit message (Collapse)AuthorAgeFilesLines
* C#: Begin move to .NET CoreIgnacio Roldán Etcheverry2022-08-221-112/+0
| | | | | | | | | | | | We're targeting .NET 5 for now to make development easier while .NET 6 is not yet released. TEMPORARY REGRESSIONS --------------------- Assembly unloading is not implemented yet. As such, many Godot resources are leaked at exit. This will be re-implemented later together with assembly hot-reloading.
* Be more verbose about why msbuild tools could not be foundMarcel Admiraal2022-01-291-4/+4
|
* Remove unused imports in .py, SCsub and SConstruct filesAnutrix2021-10-181-1/+0
|
* Merge python EnvironmentError, IOError and WindowsError into OSError.Marcel Admiraal2020-09-021-5/+5
|
* SCons: Format buildsystem files with psf/blackRémi Verschelde2020-03-301-26/+26
| | | | | | | | | | | | | | | | | | | | | Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
* SCons: Drop support for Python 2Rémi Verschelde2020-03-251-7/+2
| | | | | | We now require SCons 3.0+ (first version with Python 3 support), and we set min required Python 3 version to 3.5 (3.4 and earlier are EOL).
* Some small fixes to warnings in python scriptsunknown2019-07-111-2/+0
|
* Mono: Reorganize build scriptsIgnacio Etcheverry2019-04-071-0/+120
All build scripts, other than config.py and SCSub, are now located in the build_scripts subdirectory.