mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-27 11:29:19 +01:00
18 lines
331 B
Python
18 lines
331 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",
|
|
]
|
|
|
|
env_mlp.add_source_files(env.modules_sources, sources)
|