2017-07-25 22:28:38 +02:00
|
|
|
subdir('common')
|
|
|
|
|
|
|
|
panels = [
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'applications',
|
|
|
|
# 'background',
|
|
|
|
# 'camera',
|
|
|
|
# 'color',
|
|
|
|
# 'datetime',
|
|
|
|
# 'default-apps',
|
|
|
|
# 'diagnostics',
|
|
|
|
# 'display',
|
|
|
|
# 'info-overview',
|
|
|
|
# 'keyboard',
|
|
|
|
# 'location',
|
|
|
|
# 'lock',
|
|
|
|
# 'microphone',
|
|
|
|
# 'mouse',
|
|
|
|
# 'multitasking',
|
|
|
|
# 'notifications',
|
|
|
|
# 'online-accounts',
|
|
|
|
# 'power',
|
|
|
|
# 'printers',
|
|
|
|
# 'region',
|
|
|
|
# 'removable-media',
|
|
|
|
# 'search',
|
|
|
|
# 'sharing',
|
|
|
|
# 'sound',
|
|
|
|
# 'universal-access',
|
|
|
|
# 'usage',
|
|
|
|
# 'user-accounts',
|
|
|
|
# 'wwan',
|
2017-07-25 22:28:38 +02:00
|
|
|
]
|
|
|
|
|
2018-01-23 12:21:21 +01:00
|
|
|
if host_is_linux
|
2021-10-18 11:25:46 -03:00
|
|
|
# panels += ['network']
|
2018-01-23 12:21:21 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
if host_is_linux_not_s390
|
2018-01-18 16:17:08 +01:00
|
|
|
panels += [
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'bluetooth',
|
|
|
|
# 'thunderbolt',
|
|
|
|
# 'wacom'
|
2018-01-18 16:17:08 +01:00
|
|
|
]
|
2017-07-25 22:28:38 +02:00
|
|
|
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
|