SCsub 302 B

123456789101112
  1. #!/usr/bin/env python
  2. from misc.utility.scons_hints import *
  3. Import("env")
  4. env_object = env.Clone()
  5. env_object.add_source_files(env.servers_sources, "physics_server_2d_extension.cpp")
  6. if not env["disable_3d"]:
  7. env_object.add_source_files(env.servers_sources, "physics_server_3d_extension.cpp")