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-11-09 20:41:46 -03:00
|
|
|
'color',
|
2021-11-11 15:31:41 -03:00
|
|
|
'display',
|
2021-10-31 17:40:27 -03:00
|
|
|
'keyboard',
|
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',
|
2023-06-03 12:51:21 +02:00
|
|
|
'privacy',
|
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',
|
2023-05-27 23:58:24 +05:30
|
|
|
'system',
|
2021-10-20 13:24:38 -03:00
|
|
|
'universal-access',
|
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-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 = [
|
2023-01-24 22:19:25 +05:30
|
|
|
'-DG_LOG_DOMAIN="cc-@0@-panel"'.format(cappletname),
|
2017-07-25 22:28:38 +02:00
|
|
|
'-DPANEL_ID="@0@"'.format(cappletname)
|
|
|
|
]
|
|
|
|
|
|
|
|
subdir(cappletname)
|
|
|
|
endforeach
|