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
|
|
|
|
|
|
|
env_modules = env.Clone()
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Export("env_modules")
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2019-07-22 13:57:39 +02:00
|
|
|
env.modules_sources = []
|
|
|
|
|
|
|
|
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():
|
2020-03-30 08:28:32 +02:00
|
|
|
if name in env.disabled_modules:
|
2016-10-30 18:44:57 +01:00
|
|
|
continue
|
2020-04-04 13:46:15 +02: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 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])
|