2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-04-02 18:26:12 +00:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
env_modules = env.Clone()
|
|
|
|
|
|
|
|
Export('env_modules')
|
|
|
|
|
2016-10-30 17:57:40 +00:00
|
|
|
env.modules_sources = [
|
2016-10-30 17:44:57 +00:00
|
|
|
"register_module_types.cpp",
|
2016-04-02 18:26:12 +00:00
|
|
|
]
|
2016-10-30 17:57:40 +00:00
|
|
|
# env.add_source_files(env.modules_sources,"*.cpp")
|
2016-04-02 18:26:12 +00:00
|
|
|
Export('env')
|
|
|
|
|
|
|
|
for x in env.module_list:
|
2016-10-30 17:44:57 +00:00
|
|
|
if (x in env.disabled_modules):
|
|
|
|
continue
|
2016-10-30 17:57:40 +00:00
|
|
|
env_modules.Append(CPPFLAGS=["-DMODULE_" + x.upper() + "_ENABLED"])
|
|
|
|
SConscript(x + "/SCsub")
|
2016-04-02 18:26:12 +00:00
|
|
|
|
2016-10-30 17:57:40 +00:00
|
|
|
lib = env_modules.Library("modules", env.modules_sources)
|
2016-04-02 18:26:12 +00:00
|
|
|
|
|
|
|
env.Prepend(LIBS=[lib])
|