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