2017-07-25 22:28:38 +02:00
|
|
|
subdir('common')
|
|
|
|
|
|
|
|
panels = [
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'applications',
|
|
|
|
# 'background',
|
2021-10-19 23:11:47 -03:00
|
|
|
'camera',
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'color',
|
|
|
|
# 'datetime',
|
2021-10-20 13:36:57 -03:00
|
|
|
'default-apps',
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'diagnostics',
|
|
|
|
# 'display',
|
2021-10-19 23:07:53 -03:00
|
|
|
'info-overview',
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'keyboard',
|
|
|
|
# 'location',
|
|
|
|
# 'lock',
|
|
|
|
# 'microphone',
|
|
|
|
# 'mouse',
|
|
|
|
# 'multitasking',
|
2021-10-19 23:10:34 -03:00
|
|
|
'notifications',
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'online-accounts',
|
|
|
|
# 'power',
|
|
|
|
# 'printers',
|
|
|
|
# 'region',
|
2021-10-20 13:56:29 -03:00
|
|
|
'removable-media',
|
2021-10-18 11:25:46 -03:00
|
|
|
# 'search',
|
|
|
|
# 'sharing',
|
2021-10-20 00:24:41 -03:00
|
|
|
'sound',
|
2021-10-20 13:24:38 -03:00
|
|
|
'universal-access',
|
2021-10-18 11:25:46 -03:00
|
|
|
# '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
|