Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
13 lines
500 B
Python
13 lines
500 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
|
|
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")
|