diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-02-07 14:19:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 14:19:32 +0100 |
commit | 7711e9f93bcb6bda690c03899b44762009e82547 (patch) | |
tree | 72c94797816a2f3da5ad4cb59a177ec74674a357 /modules/modules_builders.py | |
parent | 00f46452b0206afe6aca79b0c4cd4a205f99067b (diff) | |
parent | f3726ee99488695c4aae22fffd3649499b285faf (diff) |
Merge pull request #35963 from akien-mga/scons-modules-enabled-header
SCons: Refactor module defines into a generated header, cleanup
Diffstat (limited to 'modules/modules_builders.py')
-rw-r--r-- | modules/modules_builders.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/modules_builders.py b/modules/modules_builders.py new file mode 100644 index 0000000000..0e9cba2b0b --- /dev/null +++ b/modules/modules_builders.py @@ -0,0 +1,16 @@ +"""Functions used to generate source files during build time + +All such functions are invoked in a subprocess on Windows to prevent build flakiness. +""" + +from platform_methods import subprocess_main + + +def generate_modules_enabled(target, source, env): + with open(target[0].path, 'w') as f: + for module in env.module_list: + f.write('#define %s\n' % ("MODULE_" + module.upper() + "_ENABLED")) + + +if __name__ == '__main__': + subprocess_main(globals()) |