build: make systemd dependency optional

The systemd dependency is only used to install some systemd service
files. This can easily be made optional.
This commit is contained in:
Dudemanguy
2020-12-08 14:34:06 -06:00
committed by Benjamin Berg
parent 1fc10f15ee
commit 5aa61adabc
3 changed files with 21 additions and 11 deletions

View File

@ -6,6 +6,10 @@ option('man',
description: 'Generate the man files',
type: 'boolean',
value: true)
option('systemd',
description: 'Install system service files',
type: 'boolean',
value: true)
option('systemd_system_unit_dir',
description: 'Directory for systemd service files',
type: 'string')