diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-06-25 20:35:47 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-01 14:37:31 +0200 |
commit | 5371c269335f9d7013d9f25ebe12d036e2bf5d0f (patch) | |
tree | a743196f5a04cdf3839879a0de46c030fa5661a2 /src/socket-proxy | |
parent | meson: move declarations of hwdb, sysusers, and tmpfiles (diff) | |
download | systemd-5371c269335f9d7013d9f25ebe12d036e2bf5d0f.tar.xz systemd-5371c269335f9d7013d9f25ebe12d036e2bf5d0f.zip |
meson: move declarations of socket-proxy, udevadm, quotacheck, and shutdown
Diffstat (limited to 'src/socket-proxy')
-rw-r--r-- | src/socket-proxy/meson.build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/socket-proxy/meson.build b/src/socket-proxy/meson.build new file mode 100644 index 0000000000..52d63a8440 --- /dev/null +++ b/src/socket-proxy/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +executables += [ + libexec_template + { + 'name' : 'systemd-socket-proxyd', + 'public' : true, + 'sources' : files('socket-proxyd.c'), + 'dependencies' : threads, + }, +] |