mirror of
https://github.com/godotengine/godot.git
synced 2024-12-27 11:24:59 +08:00
13 lines
295 B
Plaintext
13 lines
295 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env")
|
||
|
|
||
|
import make_wrappers
|
||
|
from platform_methods import run_in_subprocess
|
||
|
|
||
|
env.CommandNoCache(["ext_wrappers.gen.inc"], "make_wrappers.py", run_in_subprocess(make_wrappers.run))
|
||
|
|
||
|
env_object = env.Clone()
|
||
|
|
||
|
env_object.add_source_files(env.servers_sources, "*.cpp")
|