2022-06-26 12:43:01 +02:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 15:19:07 -05:00
|
|
|
from misc.utility.scons_hints import *
|
2022-06-26 12:43:01 +02:00
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
|
2025-03-30 13:20:04 -03:00
|
|
|
if not env["disable_navigation_2d"]:
|
|
|
|
|
env.add_source_files(env.servers_sources, "navigation_path_query_parameters_2d.cpp")
|
|
|
|
|
env.add_source_files(env.servers_sources, "navigation_path_query_result_2d.cpp")
|
|
|
|
|
|
|
|
|
|
if not env["disable_navigation_3d"]:
|
|
|
|
|
env.add_source_files(env.servers_sources, "navigation_path_query_parameters_3d.cpp")
|
|
|
|
|
env.add_source_files(env.servers_sources, "navigation_path_query_result_3d.cpp")
|