mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-01 13:17:21 +02:00
21 lines
1.4 KiB
Meson
21 lines
1.4 KiB
Meson
# limits.d
|
|
option('with-pam-renicing', type: 'boolean', description: 'Install the limits.d configuration file to allow renicing as a user being part of the privileged gamemode group', value: true)
|
|
option('with-pam-limits-dir', type: 'string', description: 'Explicitly set the PAM limits.d directory', value: '/etc/security/limits.d')
|
|
|
|
# sd-bus provider
|
|
option('with-sd-bus-provider', type: 'combo', choices: ['systemd', 'elogind', 'no-daemon'], value: 'systemd')
|
|
|
|
# systemd specific
|
|
option('with-systemd-user-unit', type: 'boolean', description: 'Install systemd user unit', value: true)
|
|
option('with-systemd-user-unit-dir', type: 'string', description: 'Explicitly set the systemd user unit directory')
|
|
option('with-systemd-group', type: 'boolean', description: 'Install privileged gamemode group with systemd', value: true)
|
|
option('with-systemd-group-dir', type: 'string', description: 'Explicitly set the systemd group 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-util', type: 'boolean', description: 'Build the utilities', value: true)
|
|
option('with-privileged-group', type: 'string', description: 'Group that has access to privileged gamemode features', value: 'gamemode')
|