]> git.mdlowis.com Git - proto/labwc.git/commitdiff
Move osd.c and osd-field.c into src/osd
authortokyo4j <hrak1529@gmail.com>
Fri, 6 Dec 2024 10:08:27 +0000 (19:08 +0900)
committerJohan Malm <johanmalm@users.noreply.github.com>
Fri, 29 Aug 2025 19:42:01 +0000 (20:42 +0100)
src/meson.build
src/osd/meson.build [new file with mode: 0644]
src/osd/osd-field.c [moved from src/osd-field.c with 100% similarity]
src/osd/osd.c [moved from src/osd.c with 100% similarity]

index 40cf0f69cd74e5d6963be52c7c63443571980e96..24338994ff27a32fe7a69cf5758213d1538133cb 100644 (file)
@@ -11,8 +11,6 @@ labwc_sources = files(
   'magnifier.c',
   'main.c',
   'node.c',
-  'osd.c',
-  'osd-field.c',
   'output.c',
   'output-state.c',
   'output-virtual.c',
@@ -49,12 +47,13 @@ if have_libsfdo
   )
 endif
 
-subdir('img')
 subdir('common')
 subdir('config')
 subdir('decorations')
 subdir('foreign-toplevel')
+subdir('img')
 subdir('input')
 subdir('menu')
-subdir('ssd')
+subdir('osd')
 subdir('protocols')
+subdir('ssd')
diff --git a/src/osd/meson.build b/src/osd/meson.build
new file mode 100644 (file)
index 0000000..0ea1abd
--- /dev/null
@@ -0,0 +1,4 @@
+labwc_sources += files(
+  'osd.c',
+  'osd-field.c',
+)
similarity index 100%
rename from src/osd-field.c
rename to src/osd/osd-field.c
similarity index 100%
rename from src/osd.c
rename to src/osd/osd.c