File: meson.build

package info (click to toggle)
gdm3 49.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,060 kB
  • sloc: ansic: 31,633; sh: 1,637; xml: 539; makefile: 72
file content (25 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (2)
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: dconf_profiles_path,
)

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: gdm_datadir,
)