SCons: Remove run_in_subprocess dependency

This commit is contained in:
Thaddeus Crews 2024-03-11 13:05:37 -05:00
parent f040a351c2
commit 5a6e3cbcb0
No known key found for this signature in database
GPG key ID: 62181B86FE9E5D84
22 changed files with 84 additions and 305 deletions

View file

@ -201,11 +201,5 @@ def run(target, source, env):
txt += "#endif // GDVIRTUAL_GEN_H\n"
with open(target[0], "w", encoding="utf-8", newline="\n") as f:
with open(str(target[0]), "w", encoding="utf-8", newline="\n") as f:
f.write(txt)
if __name__ == "__main__":
from platform_methods import subprocess_main
subprocess_main(globals())