You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
SCons: Remove run_in_subprocess dependency
This commit is contained in:
@@ -1,15 +1,9 @@
|
||||
"""Functions used to generate source files during build time
|
||||
|
||||
All such functions are invoked in a subprocess on Windows to prevent build flakiness.
|
||||
|
||||
"""
|
||||
"""Functions used to generate source files during build time"""
|
||||
|
||||
import os.path
|
||||
|
||||
from typing import Optional
|
||||
|
||||
from platform_methods import subprocess_main
|
||||
|
||||
|
||||
class GLES3HeaderStruct:
|
||||
def __init__(self):
|
||||
@@ -600,7 +594,3 @@ def build_gles3_header(
|
||||
def build_gles3_headers(target, source, env):
|
||||
for x in source:
|
||||
build_gles3_header(str(x), include="drivers/gles3/shader_gles3.h", class_suffix="GLES3")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
subprocess_main(globals())
|
||||
|
||||
Reference in New Issue
Block a user