mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
12 lines
306 B
Plaintext
12 lines
306 B
Plaintext
|
import os
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
module_env = env.Clone()
|
||
|
|
||
|
module_env.add_source_files(env.modules_sources,"register_types.cpp")
|
||
|
|
||
|
if env["tools"]:
|
||
|
module_env.add_source_files(env.modules_sources,"plugin_refresher_editor_plugin.cpp")
|
||
|
module_env.add_source_files(env.modules_sources,"plugin_refresher.cpp")
|