2023-02-17 20:57:16 +01:00
|
|
|
#!/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",
|
2023-02-18 12:47:45 +01:00
|
|
|
"script_editor_quick_open.cpp",
|
2023-02-18 12:58:37 +01:00
|
|
|
"script_editor_base.cpp",
|
2023-02-18 13:22:43 +01:00
|
|
|
"script_editor.cpp",
|
2023-02-18 13:30:17 +01:00
|
|
|
"connection_info_dialog.cpp",
|
2023-02-18 13:59:28 +01:00
|
|
|
"goto_line_dialog.cpp",
|
2023-02-18 14:09:15 +01:00
|
|
|
"find_replace_bar.cpp",
|
2023-02-17 20:57:16 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
env_mlp.add_source_files(env.modules_sources, sources)
|