meson: Make vulkan and xinerama optional deps default to 'auto'

It is nicer for contributors to have a build that works by default.
Distributors should be using -Dauto_features=enabled to get ride of
automagic options.
This commit is contained in:
Xavier Claessens 2020-10-16 17:57:48 -04:00
parent 6ae9f7e7c3
commit ea3933b87a

View File

@ -43,12 +43,12 @@ option('print',
option('vulkan',
type: 'feature',
value: 'enabled',
value: 'auto',
description : 'Enable support for the Vulkan graphics API')
option('xinerama',
type: 'feature',
value: 'enabled',
value: 'auto',
description : 'Enable support for the X11 Xinerama extension')
option('cloudproviders',