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
|
|
|
|
2020-02-06 16:28:32 +00:00
|
|
|
import modules_builders
|
|
|
|
|
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
|
|
|
|
2021-05-05 09:35:33 +00:00
|
|
|
env.Depends("modules_enabled.gen.h", Value(env.module_list))
|
2020-02-06 16:28:32 +00:00
|
|
|
env.CommandNoCache("modules_enabled.gen.h", Value(env.module_list), modules_builders.generate_modules_enabled)
|
2019-07-22 11:57:39 +00:00
|
|
|
|
2020-02-06 16:28:32 +00:00
|
|
|
env.modules_sources = []
|
2019-07-22 11:57:39 +00:00
|
|
|
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():
|
|
|
|
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])
|