1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

SCons: Properly NoCache all text files

This commit is contained in:
Thaddeus Crews
2025-01-01 15:40:46 -06:00
parent d33da79d3f
commit 73278bf35d
10 changed files with 166 additions and 249 deletions

View File

@@ -148,6 +148,7 @@ public:
def build_rd_headers(target, source, env):
env.NoCache(target)
for x in source:
build_rd_header(filename=str(x))
@@ -205,5 +206,6 @@ static const char {out_file_base}[] = {{
def build_raw_headers(target, source, env):
env.NoCache(target)
for x in source:
build_raw_header(filename=str(x))