2017-07-25 22:28:38 +02:00
|
|
|
subdir('common')
|
|
|
|
|
|
|
|
panels = [
|
2021-10-21 11:21:19 -03:00
|
|
|
'applications',
|
2021-11-09 12:12:23 -03:00
|
|
|
'background',
|
2021-10-19 23:11:47 -03:00
|
|
|
'camera',
|
2021-11-09 20:41:46 -03:00
|
|
|
'color',
|
2021-10-31 20:49:52 -03:00
|
|
|
'datetime',
|
2021-10-20 13:36:57 -03:00
|
|
|
'default-apps',
|
2021-10-21 20:11:04 -03:00
|
|
|
'diagnostics',
|
2021-11-11 15:31:41 -03:00
|
|
|
'display',
|
2021-12-07 18:57:13 +08:00
|
|
|
'firmware-security',
|
2021-10-19 23:07:53 -03:00
|
|
|
'info-overview',
|
2021-10-31 17:40:27 -03:00
|
|
|
'keyboard',
|
2021-10-20 17:08:28 -03:00
|
|
|
'location',
|
2021-10-20 17:19:07 -03:00
|
|
|
'microphone',
|
2021-10-21 15:59:55 -03:00
|
|
|
'mouse',
|
2021-10-20 23:42:46 -03:00
|
|
|
'multitasking',
|
2021-10-19 23:10:34 -03:00
|
|
|
'notifications',
|
2022-01-17 16:05:05 -03:00
|
|
|
'online-accounts',
|
2021-10-20 23:07:53 -03:00
|
|
|
'power',
|
2021-10-29 17:16:45 -03:00
|
|
|
'printers',
|
2021-10-31 22:12:05 -03:00
|
|
|
'region',
|
2021-10-20 13:56:29 -03:00
|
|
|
'removable-media',
|
2022-01-25 02:30:09 +01:00
|
|
|
'screen',
|
2021-10-20 16:56:11 -03:00
|
|
|
'search',
|
2021-10-21 20:03:06 -03:00
|
|
|
'sharing',
|
2021-10-20 00:24:41 -03:00
|
|
|
'sound',
|
2021-10-20 13:24:38 -03:00
|
|
|
'universal-access',
|
2021-10-21 12:12:05 -03:00
|
|
|
'usage',
|
2022-01-26 10:13:58 +01:00
|
|
|
'user-accounts',
|
2021-12-19 19:57:26 +05:30
|
|
|
'wwan',
|
2017-07-25 22:28:38 +02:00
|
|
|
]
|
|
|
|
|
2018-01-23 12:21:21 +01:00
|
|
|
if host_is_linux
|
2021-11-29 10:37:01 -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-28 14:14:15 -03:00
|
|
|
'bluetooth',
|
2021-10-21 21:08:31 -03:00
|
|
|
'thunderbolt',
|
2021-11-18 15:51:43 -03:00
|
|
|
'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
|