2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-04-04 11:46:15 +00:00
|
|
|
Import("env")
|
|
|
|
|
|
|
|
import os
|
2016-04-02 18:26:12 +00:00
|
|
|
|
|
|
|
env_modules = env.Clone()
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Export("env_modules")
|
2016-04-02 18:26:12 +00:00
|
|
|
|
2019-07-22 11:57:39 +00:00
|
|
|
env.modules_sources = []
|
|
|
|
|
|
|
|
env_modules.add_source_files(env.modules_sources, "register_module_types.gen.cpp")
|
2016-04-02 18:26:12 +00:00
|
|
|
|
2020-04-04 11:46:15 +00:00
|
|
|
for name, path in env.module_list.items():
|
2020-03-30 06:28:32 +00:00
|
|
|
if name in env.disabled_modules:
|
2016-10-30 17:44:57 +00:00
|
|
|
continue
|
2020-04-04 11:46:15 +00:00
|
|
|
|
|
|
|
env_modules.Append(CPPDEFINES=["MODULE_" + name.upper() + "_ENABLED"])
|
|
|
|
if not os.path.isabs(path):
|
|
|
|
SConscript(name + "/SCsub") # Built-in.
|
|
|
|
else:
|
|
|
|
SConscript(path + "/SCsub") # Custom.
|
2016-04-02 18:26:12 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
if env["split_libmodules"]:
|
|
|
|
env.split_lib("modules", env_lib=env_modules)
|
2018-01-19 00:26:04 +00:00
|
|
|
else:
|
2018-01-19 00:35:02 +00:00
|
|
|
lib = env_modules.add_library("modules", env.modules_sources)
|
|
|
|
|
|
|
|
env.Prepend(LIBS=[lib])
|