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

SCons: Don't cache libraries
pull/1621/merge
David Snopek 2024-10-15 14:42:20 +02:00 committed by GitHub
commit 291147e21b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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