2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-04-02 18:26:12 +00:00
|
|
|
Import('env')
|
|
|
|
|
2020-02-06 16:28:32 +00:00
|
|
|
import modules_builders
|
|
|
|
|
2016-04-02 18:26:12 +00:00
|
|
|
env_modules = env.Clone()
|
|
|
|
|
|
|
|
Export('env_modules')
|
|
|
|
|
2020-02-07 09:41:45 +00:00
|
|
|
# Header with MODULE_*_ENABLED defines.
|
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-07 09:41:45 +00:00
|
|
|
# libmodule_<name>.a for each active module.
|
2020-02-06 16:28:32 +00:00
|
|
|
for module in env.module_list:
|
2020-02-07 09:41:45 +00:00
|
|
|
env.modules_sources = []
|
2020-02-06 16:28:32 +00:00
|
|
|
SConscript(module + "/SCsub")
|
2016-04-02 18:26:12 +00:00
|
|
|
|
2020-02-07 09:41:45 +00:00
|
|
|
# Some modules are not linked automatically but can be enabled optionally
|
|
|
|
# on iOS, so we handle those specially.
|
|
|
|
if env["platform"] == "iphone" and module in ["arkit", "camera"]:
|
|
|
|
continue
|
2018-01-19 00:35:02 +00:00
|
|
|
|
2020-02-07 09:41:45 +00:00
|
|
|
lib = env_modules.add_library("module_%s" % module, env.modules_sources)
|
2018-01-19 00:35:02 +00:00
|
|
|
env.Prepend(LIBS=[lib])
|
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])
|