mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 09:28:07 +01:00
39 lines
891 B
Plaintext
39 lines
891 B
Plaintext
import os
|
|
|
|
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
|
|
"algos/mm_algos.cpp",
|
|
"algos/mm_algos_bind.cpp",
|
|
|
|
"nodes/mm_material.cpp",
|
|
"nodes/mm_node_universal_property.cpp",
|
|
"nodes/mm_node.cpp",
|
|
|
|
"nodes/bases/curve_base.cpp",
|
|
"nodes/bases/gradient_base.cpp",
|
|
"nodes/bases/polygon_base.cpp",
|
|
|
|
"editor/mat_maker_gd_editor.cpp",
|
|
"editor/mm_create_name_popup.cpp",
|
|
"editor/mm_graph_node.cpp",
|
|
|
|
"editor/widgets/color_picker_popup/color_picker_popup.cpp",
|
|
|
|
"editor/widgets/curve_edit/control_point.cpp",
|
|
"editor/widgets/curve_edit/curve_dialog.cpp",
|
|
"editor/widgets/curve_edit/curve_edit.cpp",
|
|
"editor/widgets/curve_edit/curve_editor.cpp",
|
|
"editor/widgets/curve_edit/curve_view.cpp",
|
|
"editor/widgets/curve_edit/slope_point.cpp",
|
|
]
|
|
|
|
|
|
module_env.add_source_files(env.modules_sources, sources)
|
|
|