Merge pull request #1611 from Repiteo/library-no-cache

SCons: Don't cache libraries
This commit is contained in:
David Snopek
2024-10-15 14:42:20 +02:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -42,4 +42,5 @@ else:
source=sources,
)
env.NoCache(library)
Default(library)

View File

@@ -552,6 +552,7 @@ def _godot_cpp(env):
if env["build_library"]:
library = env.StaticLibrary(target=env.File("bin/%s" % library_name), source=sources)
env.NoCache(library)
default_args = [library]
# Add compiledb if the option is set