summaryrefslogtreecommitdiffstats
path: root/methods.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-67/+54
|\
| * [Buildsystem] Fix path format for SCU builds on WindowsA Thousand Ships2024-11-241-0/+1
| |
| * Merge pull request #99501 from AThousandShips/fix_cache_timeThaddeus Crews2024-11-211-7/+12
| |\ | | | | | | | | | [Buildsystem] Prevent cache check mangling access time
| | * [Buildsystem] Prevent cache check mangling access timeA Thousand Ships2024-11-211-7/+12
| | | | | | | | | | | | | | | Checking for text files using `open` changes `atime`, which breaks cache access sorting, this ensures the cache access time is preserved.
| * | Merge pull request #99274 from shana/vsproj-calculate-dependenciesThaddeus Crews2024-11-211-60/+41
| |\ \ | | |/ | |/| | | | Use scons to calculate all the sources needed for vsproj generation.
| | * Use scons to calculate all the sources needed for vsproj generation.Andreia Gaita2024-11-211-60/+41
| | | | | | | | | | | | | | | Scons knows every file - sources, headers, etc - that the binary depends on, and trying to figure that out manually is just too prone to error.
* | | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-164/+149
|\| |
| * | SCons: Fix up build after cache logic changesRémi Verschelde2024-11-151-0/+1
| | |
| * | Merge pull request #99217 from dustdfg/refactor_compiler_min_detectionThaddeus Crews2024-11-151-2/+4
| |\ \ | | | | | | | | | | | | Buildsystem: Refactor compiler detection code
| | * | Buildsystem: Refactor compiler detection codeYevhen Babiichuk (DustDFG)2024-11-151-2/+4
| | |/ | | | | | | | | | | | | | | | | | | | | | * Delete old check for gcc 8 as we support 9 or higher * Flatten branches for clang and apple clang * Renamed is_vanilla_clang to is_apple_clang to be more clear Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
| * / SCons: Improve cache purging logicThaddeus Crews2024-11-151-140/+142
| |/ | | | | | | • Implement caching via SCons arguments, rather than environment variables
| * Merge pull request #99138 from dustdfg/remove_old_vs_proj_codeThaddeus Crews2024-11-131-20/+1
| |\ | | | | | | | | | Delete old unused code for VS project generation
| | * Delete old unused code for VS project generationYevhen Babiichuk (DustDFG)2024-11-121-20/+1
| | | | | | | | | | | | | | | | | | Also ensured that sorting of files for hashing actually happens Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
| * | SCons: Bump minimum SCons & Python versionsThaddeus Crews2024-11-121-2/+1
| |/ | | | | | | | | SCons: 3.1.2 → 4.0 Python: 3.6 → 3.8
* | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-61/+2
|\|
| * Delete old function for parsing CG shadersYevhen Babiichuk (DustDFG)2024-11-081-28/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This lonely dinosaur was overlooked by a meteor. Its family was killed but it managed to survive until today. People noticed him but they didn't understood he should be dead... So our dino even got medicine on a level of all other animals of our zoo. Good bye! All the CG and HLSL functions (except this) were removed years ago when GLSL2 shaders support was added: Look at: eac4c984dfe5eebb73b094aaf2ed5ab37b6e8fdf Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
| * Replace _find_scu_section_name function with SCons builtinsYevhen Babiichuk (DustDFG)2024-11-061-33/+2
| | | | | | | | Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
* | Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-061-49/+8
|\|
| * Remove pre-Visual Studio 2017 detection code in the buildsystemHugo Locurcio2024-11-051-34/+1
| | | | | | | | Visual Studio 2017 or later has been required to build Godot for a while now.
| * Deleted stale check. Now SCons supports globbing with `#` inside pathYevhen Babiichuk (DustDFG)2024-11-021-15/+7
| | | | | | | | | | | | Some parts of the buildsystem already were using it with `#` in path Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-13/+11
|\|
| * Make module dependency check recursiveYevhen Babiichuk (DustDFG)2024-10-231-13/+11
| | | | | | | | | | | | | | The `env.disabled_modules` and `methods.disable_module` weren't used anywhere so the first one was repurposed and the second just deleted Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
* | Fix copyright_headers.py referring to GodotSpartan3222024-10-271-2/+2
| | | | | | | | | | | | Fix create_test.py missing Redot copyright reference (cherry picked from commit 08b664511b0b984309dab13efc27ad2703d4ff18)
* | Fix build versioning to account for status_versionSpartan3222024-10-241-2/+9
| | | | | | | | (cherry picked from commit 41bcc4df41772cf7277f6fd949d66126401e1cf5)
* | Fix VERSION_FULL_CONFIG ignoring status versioningSpartan3222024-10-231-1/+1
| | | | | | | | (cherry picked from commit cb0d3f7aa0c51edcf230a8fb8a53c8845f1335da)
* | Fixed the VS project creationToken Gamedev2024-10-181-22/+22
| |
* | Bump version to 4.4-alpha.2Spartan3222024-10-141-0/+1
| | | | | | | | | | Add status_version to version.py Update Engine.xml example for get_godot_compatible_version_info
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-111-1/+7
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* SCons: Fix MSVC version check for VS Preview九軒2024-10-021-1/+1
|
* SCons: Include pre-release in MSVC detectionThaddeus Crews2024-09-291-1/+16
|
* SCons: Fix MSVC decode errorThaddeus Crews2024-09-291-1/+1
|
* SCons: Detect msvc compiler versionThaddeus Crews2024-09-271-4/+17
| | | | • C standard now passed on msvc if the version is supported
* Merge pull request #96407 from alvinhochun/mingw-ar-long-command-tempfileRémi Verschelde2024-09-181-18/+6
|\ | | | | | | Remove `ARFLAGS` hack for Windows, replace with `TEMPFILE`
| * Remove ARFLAGS hack for Windows, replace with TEMPFILEAlvin Wong2024-09-011-18/+6
| | | | | | | | | | TEMPFILE is the built-in way of SCons to use a response file for command lines that are too long.
* | [Buildsystem] Improve cache handlingA Thousand Ships2024-09-091-38/+62
|/ | | | | | Prevents cache issues by not purging cache before starting a build. Splits cache purge related code from progress code and delays the purge until after final build is done.
* Add support for compiling with VS clang-cl toolsetAlula2024-08-281-14/+13
|
* MinGW: Print compiler warnings on WindowsAlvin Wong2024-08-281-0/+2
|
* SCons: Add method to generate raw cstringsThaddeus Crews2024-07-311-1/+41
|
* Merge pull request #93753 from Repiteo/scons/visual-studio-fixesRémi Verschelde2024-07-221-2/+13
|\ | | | | | | SCons: Fix output with `vsproj=yes`
| * SCons: Fix output with `vsproj=yes`Thaddeus Crews2024-06-291-2/+13
| |
* | Merge pull request #94117 from mhilbrunner/fix-94090-vsproj-scons-4.8Rémi Verschelde2024-07-091-3/+5
|\ \ | | | | | | | | | Fix VS project generation with SCons 4.8.0+
| * | Fix VS project generation with SCons 4.8.0+Max Hilbrunner2024-07-091-3/+5
| |/
* / Fix build fetching git_timestamp if git log.showsignature=trueZorvalt2024-07-081-1/+1
|/
* Fix not using `encoding="utf-8"` when writing to files or reading from themKusok2024-06-191-2/+2
| | | | Co-authored-by: ChristopheClaustre <christophe.claustre.31@gmail.com>
* SCons: Minor fixes/adjustments for web compilationThaddeus Crews2024-05-241-0/+2
|
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-28/+23
|
* SCons: Generate all scripts nativelyThaddeus Crews2024-05-071-131/+113
|
* SCons: Fixes for warn/error colorizationThaddeus Crews2024-04-291-46/+48
|
* SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-281-66/+80
|
* SCons: `scons_version` to environment variableThaddeus Crews2024-04-241-7/+3
|