2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-02-06 16:28:32 +00:00
|
|
|
import modules_builders
|
2020-03-08 16:34:09 +00:00
|
|
|
import os
|
2020-02-06 16:28:32 +00:00
|
|
|
|
2020-07-26 11:46:44 +00:00
|
|
|
Import("env")
|
|
|
|
|
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
|
|
|
|
2020-02-07 09:41:45 +00:00
|
|
|
# Header with MODULE_*_ENABLED defines.
|
2021-05-05 09:35:33 +00:00
|
|
|
env.Depends("modules_enabled.gen.h", Value(env.module_list))
|
2020-07-27 18:00:26 +00:00
|
|
|
env.CommandNoCache(
|
|
|
|
"modules_enabled.gen.h",
|
|
|
|
Value(env.module_list),
|
|
|
|
env.Run(
|
|
|
|
modules_builders.generate_modules_enabled,
|
|
|
|
"Generating enabled modules header.",
|
|
|
|
# NOTE: No need to run in subprocess since this is still executed serially.
|
|
|
|
subprocess=False,
|
|
|
|
),
|
|
|
|
)
|
2019-07-22 11:57:39 +00:00
|
|
|
|
2020-07-26 11:46:44 +00:00
|
|
|
# Header to be included in `tests/test_main.cpp` to run module-specific tests.
|
|
|
|
if env["tests"]:
|
2021-05-05 09:35:33 +00:00
|
|
|
env.Depends("modules_tests.gen.h", Value(env.module_list))
|
2020-07-26 11:46:44 +00:00
|
|
|
env.CommandNoCache(
|
|
|
|
"modules_tests.gen.h",
|
|
|
|
Value(env.module_list),
|
2020-07-27 18:00:26 +00:00
|
|
|
env.Run(
|
|
|
|
modules_builders.generate_modules_tests,
|
|
|
|
"Generating modules tests header.",
|
|
|
|
# NOTE: No need to run in subprocess since this is still executed serially.
|
|
|
|
subprocess=False,
|
|
|
|
),
|
2020-07-26 11:46:44 +00:00
|
|
|
)
|
|
|
|
env.AlwaysBuild("modules_tests.gen.h")
|
|
|
|
|
2020-03-31 14:39:39 +00:00
|
|
|
vs_sources = []
|
2020-02-07 09:41:45 +00:00
|
|
|
# libmodule_<name>.a for each active module.
|
2020-03-08 16:34:09 +00:00
|
|
|
for name, path in env.module_list.items():
|
2020-02-07 09:41:45 +00:00
|
|
|
env.modules_sources = []
|
2020-03-08 16:34:09 +00:00
|
|
|
|
|
|
|
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-08 16:34:09 +00:00
|
|
|
lib = env_modules.add_library("module_%s" % name, env.modules_sources)
|
2018-01-19 00:35:02 +00:00
|
|
|
env.Prepend(LIBS=[lib])
|
2020-03-31 14:39:39 +00:00
|
|
|
if env["vsproj"]:
|
|
|
|
vs_sources += env.modules_sources
|
2020-02-07 09:41:45 +00:00
|
|
|
|
|
|
|
# libmodules.a with only register_module_types.
|
|
|
|
# Must be last so that all libmodule_<name>.a libraries are on the right side
|
|
|
|
# in the linker command.
|
|
|
|
env.modules_sources = []
|
|
|
|
env_modules.add_source_files(env.modules_sources, "register_module_types.gen.cpp")
|
|
|
|
lib = env_modules.add_library("modules", env.modules_sources)
|
|
|
|
env.Prepend(LIBS=[lib])
|
2020-03-31 14:39:39 +00:00
|
|
|
if env["vsproj"]:
|
|
|
|
env.modules_sources += vs_sources
|