Move osd.c and osd-field.c into src/osd

This commit is contained in:
tokyo4j 2024-12-06 19:08:27 +09:00 committed by Johan Malm
parent f347a818e3
commit 57a1ea6cb5
4 changed files with 7 additions and 4 deletions

View 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')

4
src/osd/meson.build Normal file
View file

@ -0,0 +1,4 @@
labwc_sources += files(
'osd.c',
'osd-field.c',
)