Merge "doc: fix broken meson deps for various manuals outputs" into main
This commit is contained in:
commit
3d14567d0b
|
@ -20,6 +20,8 @@ conf_file_json = custom_target(
|
||||||
capture : true,
|
capture : true,
|
||||||
output : 'conf-file.json',
|
output : 'conf-file.json',
|
||||||
env : nix_env_for_docs,
|
env : nix_env_for_docs,
|
||||||
|
# FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though.
|
||||||
|
build_always_stale : true,
|
||||||
)
|
)
|
||||||
|
|
||||||
nix_conf_file_md_body = custom_target(
|
nix_conf_file_md_body = custom_target(
|
||||||
|
@ -50,6 +52,8 @@ nix_exp_features_json = custom_target(
|
||||||
command : [ nix, '__dump-xp-features' ],
|
command : [ nix, '__dump-xp-features' ],
|
||||||
capture : true,
|
capture : true,
|
||||||
output : 'xp-features.json',
|
output : 'xp-features.json',
|
||||||
|
# FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though.
|
||||||
|
build_always_stale : true,
|
||||||
)
|
)
|
||||||
|
|
||||||
language_json = custom_target(
|
language_json = custom_target(
|
||||||
|
@ -57,6 +61,8 @@ language_json = custom_target(
|
||||||
output : 'language.json',
|
output : 'language.json',
|
||||||
capture : true,
|
capture : true,
|
||||||
env : nix_env_for_docs,
|
env : nix_env_for_docs,
|
||||||
|
# FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though.
|
||||||
|
build_always_stale : true,
|
||||||
)
|
)
|
||||||
|
|
||||||
nix3_cli_json = custom_target(
|
nix3_cli_json = custom_target(
|
||||||
|
@ -64,6 +70,8 @@ nix3_cli_json = custom_target(
|
||||||
capture : true,
|
capture : true,
|
||||||
output : 'nix.json',
|
output : 'nix.json',
|
||||||
env : nix_env_for_docs,
|
env : nix_env_for_docs,
|
||||||
|
# FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though.
|
||||||
|
build_always_stale : true,
|
||||||
)
|
)
|
||||||
|
|
||||||
generate_manual_deps = files(
|
generate_manual_deps = files(
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
xp_features_json = custom_target(
|
|
||||||
command : [nix, '__dump-xp-features'],
|
|
||||||
capture : true,
|
|
||||||
output : 'xp-features.json',
|
|
||||||
)
|
|
||||||
|
|
||||||
experimental_features_shortlist_md = custom_target(
|
experimental_features_shortlist_md = custom_target(
|
||||||
command : nix_eval_for_docs + [
|
command : nix_eval_for_docs + [
|
||||||
'--expr',
|
'--expr',
|
||||||
|
@ -11,7 +5,7 @@ experimental_features_shortlist_md = custom_target(
|
||||||
],
|
],
|
||||||
input : [
|
input : [
|
||||||
'../../generate-features-shortlist.nix',
|
'../../generate-features-shortlist.nix',
|
||||||
xp_features_json,
|
nix_exp_features_json,
|
||||||
],
|
],
|
||||||
capture : true,
|
capture : true,
|
||||||
output : 'experimental-features-shortlist.md',
|
output : 'experimental-features-shortlist.md',
|
||||||
|
|
|
@ -8,7 +8,7 @@ experimental_feature_descriptions_md = custom_target(
|
||||||
],
|
],
|
||||||
input : [
|
input : [
|
||||||
'../../generate-features.nix',
|
'../../generate-features.nix',
|
||||||
xp_features_json,
|
nix_exp_features_json,
|
||||||
],
|
],
|
||||||
capture : true,
|
capture : true,
|
||||||
output : 'experimental-feature-descriptions.md',
|
output : 'experimental-feature-descriptions.md',
|
||||||
|
|
Loading…
Reference in a new issue