meson: de-tabularize meson_options.txt
authorDylan Baker <dylan@pnwbakers.com>
Wed, 4 Oct 2017 23:18:34 +0000 (16:18 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Mon, 9 Oct 2017 20:42:43 +0000 (13:42 -0700)
This ends up being unworkable as more options get added, and with
description wrapped onto a new line it doesn't improve readability
anyway.

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
meson_options.txt

index eccd5c10d59074fee2643bd5fa546dd99baf318c..6ca19db3497c7eddf454fdf44f0ab771855acc87 100644 (file)
 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 # SOFTWARE.
 
-option('platforms',      type : 'string',  value : 'x11,wayland',
+option('platforms', type : 'string', value : 'x11,wayland',
        description : 'comma separated list of window systems to support. wayland, x11, surfaceless, drm, etc.')
-option('vulkan-drivers', type : 'string',  value : 'intel,amd',
+option('vulkan-drivers', type : 'string', value : 'intel,amd',
        description : 'comma separated list of vulkan drivers to build.')
-option('shader-cache',    type : 'boolean', value : true,
+option('shader-cache', type : 'boolean', value : true,
        description : 'Build with on-disk shader cache support')
-option('vulkan-icd-dir', type : 'string',  value : '',
+option('vulkan-icd-dir', type : 'string', value : '',
        description : 'Location relative to prefix to put vulkan icds on install. Default: $datadir/vulkan/icd.d')
-option('valgrind',       type : 'boolean', value : true,
+option('valgrind', type : 'boolean', value : true,
        description : 'Build with valgrind support if possible')
-option('build-tests',    type : 'boolean', value : false,
+option('build-tests', type : 'boolean', value : false,
        description : 'Build unit tests. Currently this will build *all* unit tests, which may build more than expected.')