Files
godot/core
Rémi Verschelde c133480531 SCons: List .gen.cpp sources explicitly to avoid globbing errors
Whenever we change the name (or remove) generated cpp files with the `.gen.cpp`
extension, users run into build issues when switching between branches (i.e.
switching before and after the name change/removal). This is because we glob
`*.cpp` so if a now-obsolete file from a previous build is present, we'll
include it too, potentially leading to bugs or compilation failure (due to
missing headers or invalid code).

So globbing patterns in `add_source_files` will now skip files ending with
`.gen.cpp`, which should instead be passed explicitly where they're used.
2021-10-15 22:14:11 +02:00
..
2021-09-30 15:09:12 -06:00
2021-02-10 19:31:24 -03:00
2021-02-10 19:31:24 -03:00
2021-08-24 15:28:29 -03:00
2021-01-01 20:19:21 +01:00