mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-29 23:27:12 +01:00
19 lines
356 B
Python
19 lines
356 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
env_mlp = env.Clone()
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
"code_editor.cpp",
|
|
"script_editor_plugin.cpp",
|
|
"script_text_editor.cpp",
|
|
"text_editor.cpp",
|
|
"script_editor_quick_open.cpp",
|
|
"script_editor_base.cpp",
|
|
"script_editor.cpp",
|
|
]
|
|
|
|
env_mlp.add_source_files(env.modules_sources, sources)
|