diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-09-30 11:26:06 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-09-30 11:26:06 -0500 |
commit | 83c0f15ab95d608f2c39eda942ee4a51cc1f0456 (patch) | |
tree | 895929065b6b44c88f21be6c4accb3b53fa225cf /tools | |
parent | 96565e1de5042baeb4835e56021fc995f1647fd1 (diff) | |
download | redot-cpp-83c0f15ab95d608f2c39eda942ee4a51cc1f0456.tar.gz |
SCons: Don't cache librarys
Diffstat (limited to 'tools')
-rw-r--r-- | tools/godotcpp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/godotcpp.py b/tools/godotcpp.py index 9ceac02..b2a63dc 100644 --- a/tools/godotcpp.py +++ b/tools/godotcpp.py @@ -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 |