mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-07 19:39:36 +01:00
16 lines
265 B
Python
16 lines
265 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",
|
|
]
|
|
|
|
env_mlp.add_source_files(env.modules_sources, sources)
|