summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2020-10-30 11:58:14 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2023-11-23 11:40:07 +0000
commit6b8dc071949205baf9f2d7cda4cb9950f3ef7e32 (patch)
tree2dfd3a985a6ba51703093c112b893d7776723983
parente9c43d4075871a73b4ab1436bbe2844e7ee8aeb9 (diff)
DocumentationUseOnly: Force enable Vivid
To make sure we always build the Vivid pipeline in this branch, explicitly add it to the pipelines build targets. This is not any kind of best practice for pipeline handlers, but is here to ensure that this pipeline is always compiled on this branch who's sole purpose is to use and demonstrate the vivid pipeline handler.
-rw-r--r--meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index e9a1c7e3..f4528977 100644
--- a/meson.build
+++ b/meson.build
@@ -228,6 +228,11 @@ if get_option('test')
endforeach
endif
+# Force enable the Vivid pipeline on the development branch only.
+if 'vivid' not in pipelines
+ pipelines += ['vivid']
+endif
+
# Utilities are parsed first to provide support for other components.
subdir('utils')