Add env.Depends to modules_enabled.gen.h generator

Sometimes scons doesn't detects that a new module is being added. This commit fix it.
This commit is contained in:
Andrea Catania 2021-05-05 11:35:33 +02:00 committed by AndreaCatania
parent cba3b024b5
commit b667e72adf
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ env_modules = env.Clone()
Export("env_modules")
# Header with MODULE_*_ENABLED defines.
env.Depends("modules_enabled.gen.h", Value(env.module_list))
env.CommandNoCache(
"modules_enabled.gen.h",
Value(env.module_list),
@ -23,6 +24,7 @@ env.CommandNoCache(
# Header to be included in `tests/test_main.cpp` to run module-specific tests.
if env["tests"]:
env.Depends("modules_tests.gen.h", Value(env.module_list))
env.CommandNoCache(
"modules_tests.gen.h",
Value(env.module_list),