commit:     85826a7a4bbc86fd749c762f48f7524ce1473e60
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 20 15:32:56 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 20 15:32:56 2025 +0000
URL:        https://gitweb.gentoo.org/proj/steve.git/commit/?id=85826a7a

Move sources to src/ subdirectory

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 meson.build                  | 4 ++--
 steve.cxx => src/steve.cxx   | 0
 steve.h => src/steve.h       | 0
 stevie.cxx => src/stevie.cxx | 0
 util.hxx => src/util.hxx     | 0
 5 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meson.build b/meson.build
index c294dcf..191f531 100644
--- a/meson.build
+++ b/meson.build
@@ -9,7 +9,7 @@ version = meson.project_version()
 if get_option('client')
   executable(
     'stevie',
-    ['stevie.cxx'],
+    ['src/stevie.cxx'],
     cpp_args : [f'-DSTEVE_VERSION="@version@"'],
     install : true)
 endif
@@ -20,7 +20,7 @@ if get_option('server')
 
   steve = executable(
     'steve',
-    ['steve.cxx'],
+    ['src/steve.cxx'],
     cpp_args : [f'-DSTEVE_VERSION="@version@"'],
     dependencies: [fuse3, libevent],
     install : true)

diff --git a/steve.cxx b/src/steve.cxx
similarity index 100%
rename from steve.cxx
rename to src/steve.cxx

diff --git a/steve.h b/src/steve.h
similarity index 100%
rename from steve.h
rename to src/steve.h

diff --git a/stevie.cxx b/src/stevie.cxx
similarity index 100%
rename from stevie.cxx
rename to src/stevie.cxx

diff --git a/util.hxx b/src/util.hxx
similarity index 100%
rename from util.hxx
rename to src/util.hxx

Reply via email to