summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorFrediano Ziglio <fziglio@redhat.com>2019-11-26 15:08:38 +0000
committerFrediano Ziglio <fziglio@redhat.com>2019-11-26 15:39:07 +0000
commit13de28fc276c947a679e266368e201317575117a (patch)
tree99cbb1af36d0b80e3bbfda1e2870d1ec727e5563 /meson_options.txt
parent7f501b0df1d6422d87f5006c87f8bc38b8dc2d99 (diff)
Update spice-common submodule
This brings in the following changes: Fabrice Fontaine (2): configure.ac: add --enable-tests meson: add tests option Frediano Ziglio (4): codegen: Add 'chunk' to the output attributes codegen: Check validity of array members codegen: Document "chunk" attribute codegen: Ignore path generating include guards Kevin Pouget (3): agent-interface: introduce the core of the Agent Interface agent-interface: add configuration functions build: Introduce the agent-interface as an alternative instrumentation library Updated files are due to agent-interface updates. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Kevin Pouget <kpouget@redhat.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index a05e1eec..f8a1e95e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -46,7 +46,8 @@ option('manual',
value : true,
description : 'Build SPICE manual')
-option('recorder',
- type : 'boolean',
- value : false,
- description: 'Enable recorder instrumentation')
+option('instrumentation',
+ type : 'combo',
+ value : 'no',
+ choices : ['recorder', 'agent', 'no'],
+ description: 'Enable instrumentation')