summaryrefslogtreecommitdiffstats
path: root/etc/config/meson.build
blob: ca888084913709cd272bf094a6caf55fc686fd59 (plain)
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
26
27
28
29
30
31
32
33
34
35
# etc: config examples
# SPDX-License-Identifier: GPL-3.0-or-later

# Install config examples
example_configs = [
  'config.cluster',
  'config.docker',
  'config.isp',
  'config.internal',
  'config.privacy',
  'config.personal',
  'config.splitview',
]

install_data(
  sources: example_configs,
  install_dir: examples_dir,
)


# kresd.conf
install_kresd_conf = get_option('install_kresd_conf') == 'enabled'
if get_option('install_kresd_conf') == 'auto'
  if run_command(['test', '-r', etc_dir / 'kresd.conf'], check: false).returncode() == 1
    install_kresd_conf = true
  endif
endif

if install_kresd_conf
  install_data(
    sources: 'config.personal',
    rename: 'kresd.conf',
    install_dir: etc_dir,
  )
endif