]> git.ipfire.org Git - thirdparty/systemd.git/blob - units/user/meson.build
638aaf3262fd8435445f50212e4db651162c87b0
[thirdparty/systemd.git] / units / user / meson.build
1 # SPDX-License-Identifier: LGPL-2.1+
2 #
3 # Copyright 2017 Zbigniew Jędrzejewski-Szmek
4
5 units = [
6 'basic.target',
7 'bluetooth.target',
8 'default.target',
9 'exit.target',
10 'graphical-session-pre.target',
11 'graphical-session.target',
12 'paths.target',
13 'printer.target',
14 'shutdown.target',
15 'smartcard.target',
16 'sockets.target',
17 'sound.target',
18 'timers.target',
19 'systemd-tmpfiles-clean.timer',
20 ]
21
22 foreach file : units
23 install_data(file,
24 install_dir : userunitdir)
25 endforeach
26
27 in_units = [
28 'systemd-exit.service',
29 'systemd-tmpfiles-clean.service',
30 'systemd-tmpfiles-setup.service',
31 ]
32
33 foreach file : in_units
34 gen = configure_file(
35 input : file + '.in',
36 output : file,
37 configuration : substs)
38 install_data(gen,
39 install_dir : userunitdir)
40 endforeach