mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-04 22:57:21 +02:00

This adds 10-gamemode.conf as a limits.d configuration file and with-pam-group meson option to allow renicing as an unpriviledged user being part of the specified group. Signed-off-by: Térence Clastres <t.clastres@gmail.com> Signed-off-by: Kai Krakow <kai@kaishome.de>
15 lines
753 B
Meson
15 lines
753 B
Meson
option('with-systemd', type: 'boolean', description: 'Use systemd support (unit, etc)', value: 'true')
|
|
|
|
# limits.d
|
|
option('with-pam-group', type: 'string', description: 'Install the limits.d configuration file to allow renicing as an unpriviledged user being part of the specified group')
|
|
|
|
# systemd specific
|
|
option('with-systemd-user-unit-dir', type: 'string', description: 'Explicitly set the systemd user unit directory')
|
|
|
|
# Not using systemd
|
|
option('with-dbus-service-dir', type: 'string', description: 'Explicitly set the D-BUS session directory')
|
|
|
|
# General options
|
|
option('with-examples', type: 'boolean', description: 'Build sample programs', value: 'true')
|
|
option('with-daemon', type: 'boolean', description: 'Build the daemon', value: 'true')
|