From: Lucas Stach <l.stach@pengutronix.de>
To: linux-trace-devel@vger.kernel.org
Subject: [PATCH] trace-cmd meson: add options for doc and utest build
Date: Tue, 10 Dec 2024 11:57:43 +0100 [thread overview]
Message-ID: <20241210105743.453410-1-l.stach@pengutronix.de> (raw)
In some cases building documentation or utest is not desired.
Add meson options to allow skipping those build targets.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
meson.build | 5 ++++-
meson_options.txt | 4 ++++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index 4773f4a941b1..237d9b400ea5 100644
--- a/meson.build
+++ b/meson.build
@@ -140,9 +140,11 @@ subdir('lib/trace-cmd')
# trace-cmd
subdir('tracecmd')
subdir('python')
-if cunit_dep.found()
+if get_option('utest') and cunit_dep.found()
subdir('utest')
endif
+
+if get_option('doc')
subdir('Documentation/trace-cmd')
custom_target(
@@ -150,3 +152,4 @@ custom_target(
output: 'docs',
depends: [html, man],
command: ['echo'])
+endif
diff --git a/meson_options.txt b/meson_options.txt
index 2d5d7457bed5..37d72ff29d87 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -21,3 +21,7 @@ option('docbook-suppress-sp', type : 'boolean', value : false,
description : 'docbook suppress sp')
option('python', type : 'combo', choices : ['auto', 'true', 'false'],
description : 'Generate trac-cmd Python bindings')
+option('doc', type : 'boolean', value: true,
+ description : 'produce documentation')
+option('utest', type : 'boolean', value: true,
+ description : 'build utest')
reply other threads:[~2024-12-10 10:57 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241210105743.453410-1-l.stach@pengutronix.de \
--to=l.stach@pengutronix.de \
--cc=linux-trace-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).