gnome-control-center/panels/meson.build
Marco Trevisan (Treviño) b327301951 Panels: Rename lock panel into screen panel
This was designed some time ago [1] but never actually implemented, so:
 - Change the screen lock section to "screen"
 - Move the screen section up, so it's next to the other types of
   hardware
 - Added a Screen lock section in there

[1] https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/909#note_737827
2022-07-28 22:47:14 +00:00

56 lines
833 B
Meson

subdir('common')
panels = [
'applications',
'background',
'camera',
'color',
'datetime',
'default-apps',
'diagnostics',
'display',
'firmware-security',
'info-overview',
'keyboard',
'location',
'microphone',
'mouse',
'multitasking',
'notifications',
'online-accounts',
'power',
'printers',
'region',
'removable-media',
'screen',
'search',
'sharing',
'sound',
'universal-access',
'usage',
'user-accounts',
'wwan',
]
if host_is_linux
panels += ['network']
endif
if host_is_linux_not_s390
panels += [
'bluetooth',
'thunderbolt',
'wacom'
]
endif
panels_list = []
panels_libs = []
foreach cappletname: panels
cflags = [
'-DG_LOG_DOMAIN="@0@-cc-panel"'.format(cappletname),
'-DPANEL_ID="@0@"'.format(cappletname)
]
subdir(cappletname)
endforeach