8b547331be
* Allows creating a GDExtension based 3D Physics Server (for Bullet, PhysX, etc. support) * Some changes on native struct binding for PhysicsServer This allows a 3D Physics server created entirely from GDExtension. Once it works, the idea is to port the 2D one to it.
12 lines
295 B
Python
12 lines
295 B
Python
#!/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")
|