commit: 2cdd02540cb64e5d332fe62bc2e311c3900e2f9d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 22 11:55:32 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 22 11:55:32 2025 +0000
URL: https://gitweb.gentoo.org/proj/steve.git/commit/?id=2cdd0254
Install the executable
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
meson.build | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
index 5001192..6d86068 100644
--- a/meson.build
+++ b/meson.build
@@ -3,4 +3,5 @@ project('steve', 'cpp')
fuse3 = dependency('fuse3')
executable('steve', ['steve.cxx'],
- dependencies: [fuse3])
+ dependencies: [fuse3],
+ install : true)