1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
gdm_dconf = configure_file(
input: 'gdm.in',
output: '@BASENAME@',
configuration: {
'DATADIR': gdm_prefix / get_option('datadir'),
'PACKAGE': meson.project_name(),
},
install_dir: get_option('datadir') / 'dconf' / 'profile',
)
greeter_dconf_defaults = custom_target('greeter-dconf-defaults',
output: 'greeter-dconf-defaults',
input: files(
'defaults/00-upstream-settings',
'defaults/locks/00-upstream-settings-locks',
),
command: [
find_program('dconf'),
'compile',
'@OUTPUT@',
meson.current_source_dir() / 'defaults',
],
install: true,
install_dir: get_option('datadir') / meson.project_name(),
)
|