mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Compare commits
3 commits
2f3f0d22d2
...
7cad7d5956
Author | SHA1 | Date | |
---|---|---|---|
|
7cad7d5956 | ||
|
fa3b84d612 | ||
|
394014429e |
2 changed files with 5 additions and 1 deletions
|
@ -266,6 +266,7 @@ blueprints = custom_target('blueprints',
|
||||||
arguments in {Colors.UNDERLINE}{meson_file}{Colors.NO_UNDERLINE}:{Colors.CLEAR}
|
arguments in {Colors.UNDERLINE}{meson_file}{Colors.NO_UNDERLINE}:{Colors.CLEAR}
|
||||||
|
|
||||||
dependencies: blueprints,
|
dependencies: blueprints,
|
||||||
|
source_dir: meson.current_build_dir(),
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
enter()
|
enter()
|
||||||
|
|
|
@ -132,5 +132,8 @@ if __name__ == "__main__":
|
||||||
# print the sections to a json file
|
# print the sections to a json file
|
||||||
with open(outfile, "w") as f:
|
with open(outfile, "w") as f:
|
||||||
json.dump(
|
json.dump(
|
||||||
{name: section.to_json() for name, section in sections.items()}, f, indent=2
|
{name: section.to_json() for name, section in sections.items()},
|
||||||
|
f,
|
||||||
|
indent=2,
|
||||||
|
sort_keys=True,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue