2020-02-06 16:28:32 +00:00
|
|
|
"""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):
|
2020-03-30 06:28:32 +00:00
|
|
|
with open(target[0].path, "w") as f:
|
2020-02-06 16:28:32 +00:00
|
|
|
for module in env.module_list:
|
2020-03-30 06:28:32 +00:00
|
|
|
f.write("#define %s\n" % ("MODULE_" + module.upper() + "_ENABLED"))
|
2020-02-06 16:28:32 +00:00
|
|
|
|
|
|
|
|
2020-07-26 11:46:44 +00:00
|
|
|
def generate_modules_tests(target, source, env):
|
|
|
|
import os
|
|
|
|
|
|
|
|
with open(target[0].path, "w") as f:
|
2022-02-08 11:39:40 +00:00
|
|
|
for header in source:
|
|
|
|
f.write('#include "%s"\n' % (os.path.normpath(header.path)))
|
2020-07-26 11:46:44 +00:00
|
|
|
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
if __name__ == "__main__":
|
2020-02-06 16:28:32 +00:00
|
|
|
subprocess_main(globals())
|