mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
15 lines
463 B
Python
15 lines
463 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_wfc = env_modules.Clone()
|
|
|
|
env_wfc.add_source_files(env.modules_sources, "register_types.cpp")
|
|
env_wfc.add_source_files(env.modules_sources, "wave_form_collapse.cpp")
|
|
|
|
env_wfc.add_source_files(env.modules_sources, "tiling_wave_form_collapse.cpp")
|
|
env_wfc.add_source_files(env.modules_sources, "overlapping_wave_form_collapse.cpp")
|
|
|
|
env_wfc.add_source_files(env.modules_sources, "image_indexer.cpp")
|