2022-03-14 14:52:03 +00:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 20:19:07 +00:00
|
|
|
from misc.utility.scons_hints import *
|
2022-03-14 14:52:03 +00:00
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
|
|
|
env_object = env.Clone()
|
|
|
|
|
2024-02-26 12:34:53 +00:00
|
|
|
env_object.add_source_files(env.servers_sources, "physics_server_2d_extension.cpp")
|
|
|
|
|
|
|
|
if not env["disable_3d"]:
|
|
|
|
env_object.add_source_files(env.servers_sources, "physics_server_3d_extension.cpp")
|