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