Add build option to skip steps requiring root permissions

This commit is contained in:
DrDaveD
2019-07-04 03:01:19 -05:00
committed by Nikolaus Rath
parent f0c52798b7
commit be8db96603
3 changed files with 16 additions and 9 deletions
+6 -2
View File
@@ -5,7 +5,11 @@ option('udevrulesdir', type : 'string', value : '',
description: 'Where to install udev rules (if empty, query pkg-config(1))')
option('utils', type : 'boolean', value : true,
description: 'Wheter or not to build and install helper programs')
description: 'Whether or not to build and install helper programs')
option('examples', type : 'boolean', value : true,
description: 'Wheter or not to build example programs')
description: 'Whether or not to build example programs')
option('useroot', type : 'boolean', value : true,
description: 'Set owner and setuid bits on installed files')