2022-03-14 15:52:03 +01:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 15:19:07 -05:00
|
|
|
from misc.utility.scons_hints import *
|
2022-03-14 15:52:03 +01:00
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
|
|
|
env_object = env.Clone()
|
|
|
|
|
2024-02-26 06:34:53 -06: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")
|