mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-25 20:20:23 +00:00
22e775842a
Signed-off-by: Piotr Gorski <lucjan.lucjanov@gmail.com>
12 lines
524 B
Meson
12 lines
524 B
Meson
# Get the directory for systemd system unit files
|
|
systemd_system_unit_dir = systemd.get_variable(pkgconfig : 'systemdsystemunitdir')
|
|
|
|
# Install the 'scx.service' file to the systemd system unit directory
|
|
install_data('scx.service', install_dir: systemd_system_unit_dir)
|
|
|
|
# Install the 'journald@sched-ext.conf' file to the '/etc/systemd' directory
|
|
install_data('journald@sched-ext.conf', install_dir: '/etc/systemd')
|
|
|
|
# Install the 'scx' file to the '/etc/default' directory
|
|
install_data('scx', install_dir: '/etc/default')
|