mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-08 20:09:36 +01:00
17 lines
297 B
Plaintext
17 lines
297 B
Plaintext
|
#!/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",
|
||
|
"shader_editor_plugin.cpp",
|
||
|
"text_editor.cpp",
|
||
|
]
|
||
|
|
||
|
env_mlp.add_source_files(env.modules_sources, sources)
|