2024-03-11 18:05:37 +00:00
|
|
|
"""Functions used to generate source files during build time"""
|
2020-02-06 16:28:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def generate_modules_enabled(target, source, env):
|
2024-03-09 20:29:24 +00:00
|
|
|
with open(target[0].path, "w", encoding="utf-8", newline="\n") 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
|
|
|
|
|
2024-03-09 20:29:24 +00:00
|
|
|
with open(target[0].path, "w", encoding="utf-8", newline="\n") as f:
|
2022-02-08 11:39:40 +00:00
|
|
|
for header in source:
|
|
|
|
f.write('#include "%s"\n' % (os.path.normpath(header.path)))
|