SCons: Don't cache librarys

pull/1611/head
Thaddeus Crews 2024-09-30 11:26:06 -05:00
parent 96565e1de5
commit 83c0f15ab9
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84
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