summaryrefslogtreecommitdiffstats
path: root/src/hwdb
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-06-25 20:28:32 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-08-01 14:37:31 +0200
commit6fab49e4ff0dff684b60e8ec0bd3544f9cb38f41 (patch)
tree4019e294d1d46c71d7c0050b10b14bcbf45bdfcd /src/hwdb
parentmeson: move declarations of busctl, stdio-bridge, and run (diff)
downloadsystemd-6fab49e4ff0dff684b60e8ec0bd3544f9cb38f41.tar.xz
systemd-6fab49e4ff0dff684b60e8ec0bd3544f9cb38f41.zip
meson: move declarations of hwdb, sysusers, and tmpfiles
Diffstat (limited to 'src/hwdb')
-rw-r--r--src/hwdb/meson.build12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/hwdb/meson.build b/src/hwdb/meson.build
new file mode 100644
index 0000000000..385ed854d6
--- /dev/null
+++ b/src/hwdb/meson.build
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+
+executables += [
+ executable_template + {
+ 'name' : 'systemd-hwdb',
+ 'public' : true,
+ 'conditions' : ['ENABLE_HWDB'],
+ 'sources' : files('hwdb.c'),
+ 'link_with' : udev_link_with,
+ 'install_rpath' : udev_rpath,
+ },
+]