gnome-control-center/panels/meson.build
Nishal Kulkarni 20eda27bb9 applications: Move default app and removable media
Currently setting's panel list is over-populated. We can fix this by
moving some of the settings inside other panels as sub-panels.

Created a new row in applications panel for removable media and
default apps. On selecting the row we show the respective settings
which is same as before.

Removed default app and removable media from sidebar

Closes: #1092 #1096
Related to: #1090
2023-09-19 11:13:41 +00:00

47 lines
683 B
Meson

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