mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 09:28:07 +01:00
11 lines
367 B
Plaintext
11 lines
367 B
Plaintext
|
Import('env')
|
||
|
|
||
|
env.add_source_files(env.modules_sources,"register_types.cpp")
|
||
|
env.add_source_files(env.modules_sources,"tile_map.cpp")
|
||
|
env.add_source_files(env.modules_sources,"tile_set.cpp")
|
||
|
|
||
|
if env["tools"]:
|
||
|
env.add_source_files(env.modules_sources, "tile_map_editor_plugin.cpp")
|
||
|
env.add_source_files(env.modules_sources, "tile_set_editor_plugin.cpp")
|
||
|
|