mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 09:28:07 +01:00
15 lines
493 B
Python
15 lines
493 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_gridmap = env_modules.Clone()
|
|
|
|
env_gridmap.add_source_files(env.modules_sources, "grid_map.cpp")
|
|
env_gridmap.add_source_files(env.modules_sources, "mesh_library.cpp")
|
|
env_gridmap.add_source_files(env.modules_sources, "register_types.cpp")
|
|
|
|
if env["tools"]:
|
|
env_gridmap.add_source_files(env.modules_sources, "grid_map_editor_plugin.cpp")
|
|
env_gridmap.add_source_files(env.modules_sources, "mesh_library_editor_plugin.cpp")
|