diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-06-25 20:18:38 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-01 14:37:31 +0200 |
commit | cb9356254aeaa5777d527b036d75fa3d4bbe973b (patch) | |
tree | 6c365c6e2b1fba2186fd55cd55c455ad2e581c42 /src/tty-ask-password-agent | |
parent | Merge pull request #28611 from yuwata/meson-use-template (diff) | |
download | systemd-cb9356254aeaa5777d527b036d75fa3d4bbe973b.tar.xz systemd-cb9356254aeaa5777d527b036d75fa3d4bbe973b.zip |
meson: move declarations of ask-password and friends
Diffstat (limited to 'src/tty-ask-password-agent')
-rw-r--r-- | src/tty-ask-password-agent/meson.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tty-ask-password-agent/meson.build b/src/tty-ask-password-agent/meson.build new file mode 100644 index 0000000000..ad0c73bc4e --- /dev/null +++ b/src/tty-ask-password-agent/meson.build @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +executables += [ + executable_template + { + 'name' : 'systemd-tty-ask-password-agent', + 'public' : true, + 'sources' : files('tty-ask-password-agent.c'), + }, +] |