summaryrefslogtreecommitdiffstats
path: root/src/measure/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2024-11-07 12:37:45 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2024-11-07 14:50:53 +0100
commit1dabec005698407ce3a2818758603d21b5be72d7 (patch)
tree7bbb8b42d47cc0ce724dc1eaab0901505c3012f1 /src/measure/meson.build
parentMove bless-boot components to their own source subdirectory (diff)
downloadsystemd-1dabec005698407ce3a2818758603d21b5be72d7.tar.xz
systemd-1dabec005698407ce3a2818758603d21b5be72d7.zip
Move systemd-measure to its own source subdirectory
We have other subdirectories with just a single C file. And I expect that systemd-measure will only grow over time, adding new functionality. It's nicer to give its own subdirectory to maintain consistent structure.
Diffstat (limited to '')
-rw-r--r--src/measure/meson.build14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/measure/meson.build b/src/measure/meson.build
new file mode 100644
index 0000000000..13a890170c
--- /dev/null
+++ b/src/measure/meson.build
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+
+executables += [
+ libexec_template + {
+ 'name' : 'systemd-measure',
+ 'conditions' : [
+ 'HAVE_BLKID',
+ 'HAVE_OPENSSL',
+ 'HAVE_TPM2',
+ ],
+ 'sources' : files('measure.c'),
+ 'dependencies' : libopenssl,
+ },
+]