summaryrefslogtreecommitdiffstats
path: root/src/integritysetup
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-06-25 08:57:47 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-07-31 22:52:50 +0200
commit81fe141ba3b4266342e243580ac0d9fbca1ed960 (patch)
tree0b52a650ab5971ace6bc25e92665a4aa9496aa18 /src/integritysetup
parentmeson: move declarations of backlight, rfkill, and sysupdate-generator (diff)
downloadsystemd-81fe141ba3b4266342e243580ac0d9fbca1ed960.tar.xz
systemd-81fe141ba3b4266342e243580ac0d9fbca1ed960.zip
meson: move declarations of cryptsetup and friends
Diffstat (limited to 'src/integritysetup')
-rw-r--r--src/integritysetup/meson.build21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/integritysetup/meson.build b/src/integritysetup/meson.build
new file mode 100644
index 0000000000..6b9d78d4e8
--- /dev/null
+++ b/src/integritysetup/meson.build
@@ -0,0 +1,21 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+
+executables += [
+ libexec_template + {
+ 'name' : 'systemd-integritysetup',
+ 'conditions' : ['HAVE_LIBCRYPTSETUP'],
+ 'sources' : files(
+ 'integrity-util.c',
+ 'integritysetup.c',
+ ),
+ 'dependencies' : libcryptsetup,
+ },
+ generator_template + {
+ 'name' : 'systemd-integritysetup-generator',
+ 'conditions' : ['HAVE_LIBCRYPTSETUP'],
+ 'sources' : files(
+ 'integrity-util.c',
+ 'integritysetup-generator.c',
+ ),
+ },
+]