mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
SCons: Remove run_in_subprocess dependency
This commit is contained in:
@@ -1,9 +1,4 @@
|
||||
"""Functions used to generate source files during build time
|
||||
|
||||
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
|
||||
"""
|
||||
|
||||
from platform_methods import subprocess_main
|
||||
"""Functions used to generate source files during build time"""
|
||||
|
||||
|
||||
def generate_modules_enabled(target, source, env):
|
||||
@@ -18,7 +13,3 @@ def generate_modules_tests(target, source, env):
|
||||
with open(target[0].path, "w", encoding="utf-8", newline="\n") as f:
|
||||
for header in source:
|
||||
f.write('#include "%s"\n' % (os.path.normpath(header.path)))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
subprocess_main(globals())
|
||||
|
||||
Reference in New Issue
Block a user