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()
|
|
|
|
|
2023-12-17 19:09:00 +00:00
|
|
|
# Allow modules to detect if they are being built as a module.
|
|
|
|
env_modules.Append(CPPDEFINES=["GODOT_MODULE"])
|
|
|
|
|
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),
|
2024-03-11 18:05:37 +00:00
|
|
|
env.Run(modules_builders.generate_modules_enabled),
|
2020-07-27 18:00:26 +00:00
|
|
|
)
|
2019-07-22 11:57:39 +00:00
|
|
|
|
2020-07-26 11:46:44 +00:00
|
|
|
|
2020-03-31 14:39:39 +00:00
|
|
|
vs_sources = []
|
2022-02-08 11:39:40 +00:00
|
|
|
test_headers = []
|
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
|
|
|
|
2022-02-08 11:39:40 +00:00
|
|
|
# Name for built-in modules, (absolute) path for custom ones.
|
|
|
|
base_path = path if os.path.isabs(path) else name
|
|
|
|
SConscript(base_path + "/SCsub")
|
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
|
|
|
|
2022-02-08 11:39:40 +00:00
|
|
|
if env["tests"]:
|
|
|
|
# Lookup potential headers in `tests` subfolder.
|
|
|
|
import glob
|
|
|
|
|
|
|
|
module_tests = sorted(glob.glob(os.path.join(base_path, "tests", "*.h")))
|
|
|
|
if module_tests != []:
|
|
|
|
test_headers += module_tests
|
|
|
|
|
|
|
|
|
|
|
|
# Generate header to be included in `tests/test_main.cpp` to run module-specific tests.
|
|
|
|
if env["tests"]:
|
|
|
|
env.Depends("modules_tests.gen.h", test_headers)
|
|
|
|
env.CommandNoCache(
|
|
|
|
"modules_tests.gen.h",
|
|
|
|
test_headers,
|
2024-03-11 18:05:37 +00:00
|
|
|
env.Run(modules_builders.generate_modules_tests),
|
2022-02-08 11:39:40 +00:00
|
|
|
)
|
|
|
|
|
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
|