2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-04-04 13:46:15 +02:00
|
|
|
Import("env")
|
|
|
|
|
|
|
|
import os
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2020-02-06 17:28:32 +01:00
|
|
|
import modules_builders
|
|
|
|
|
2016-04-02 20:26:12 +02:00
|
|
|
env_modules = env.Clone()
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Export("env_modules")
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2021-05-05 11:35:33 +02:00
|
|
|
env.Depends("modules_enabled.gen.h", Value(env.module_list))
|
2020-02-06 17:28:32 +01:00
|
|
|
env.CommandNoCache("modules_enabled.gen.h", Value(env.module_list), modules_builders.generate_modules_enabled)
|
2019-07-22 13:57:39 +02:00
|
|
|
|
2020-02-06 17:28:32 +01:00
|
|
|
env.modules_sources = []
|
2019-07-22 13:57:39 +02:00
|
|
|
env_modules.add_source_files(env.modules_sources, "register_module_types.gen.cpp")
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2020-04-04 13:46:15 +02: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 20:26:12 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["split_libmodules"]:
|
|
|
|
env.split_lib("modules", env_lib=env_modules)
|
2018-01-19 01:26:04 +01:00
|
|
|
else:
|
2018-01-19 01:35:02 +01:00
|
|
|
lib = env_modules.add_library("modules", env.modules_sources)
|
|
|
|
|
|
|
|
env.Prepend(LIBS=[lib])
|