mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
13 lines
189 B
Plaintext
13 lines
189 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env")
|
||
|
|
||
|
env_mlp = env.Clone()
|
||
|
|
||
|
sources = [
|
||
|
"register_types.cpp",
|
||
|
"shader_editor_plugin.cpp",
|
||
|
]
|
||
|
|
||
|
env_mlp.add_source_files(env.modules_sources, sources)
|