Blame meson_options.txt

Packit Service 103f6b
# Copyright © 2017 Intel Corporation
Packit Service 103f6b
Packit Service 103f6b
# Permission is hereby granted, free of charge, to any person obtaining a copy
Packit Service 103f6b
# of this software and associated documentation files (the "Software"), to deal
Packit Service 103f6b
# in the Software without restriction, including without limitation the rights
Packit Service 103f6b
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
Packit Service 103f6b
# copies of the Software, and to permit persons to whom the Software is
Packit Service 103f6b
# furnished to do so, subject to the following conditions:
Packit Service 103f6b
Packit Service 103f6b
# The above copyright notice and this permission notice shall be included in
Packit Service 103f6b
# all copies or substantial portions of the Software.
Packit Service 103f6b
Packit Service 103f6b
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Packit Service 103f6b
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Packit Service 103f6b
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Packit Service 103f6b
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Packit Service 103f6b
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Packit Service 103f6b
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit Service 103f6b
# SOFTWARE.
Packit Service 103f6b
Packit Service 103f6b
option(
Packit Service 103f6b
  'libkms',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : 'Build libkms mm abstraction library.',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'intel',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for Intel's KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'radeon',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for radeons's KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'amdgpu',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for amdgpu's KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'nouveau',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for nouveau's KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'vmwgfx',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'true',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for vmgfx's KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'omap',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'false',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for OMAP's experimental KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'exynos',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'false',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for EXYNOS's experimental KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'freedreno',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for freedreno's KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'tegra',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'false',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for Tegra's experimental KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'vc4',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for vc4's KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'etnaviv',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'false',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : '''Enable support for etnaviv's experimental KMS API.''',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'cairo-tests',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : 'Enable support for Cairo rendering in tests.',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'man-pages',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : 'Enable manpage generation and installation.',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'valgrind',
Packit Service 103f6b
  type : 'combo',
Packit Service 103f6b
  value : 'auto',
Packit Service 103f6b
  choices : ['true', 'false', 'auto'],
Packit Service 103f6b
  description : 'Build libdrm with valgrind support.',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'freedreno-kgsl',
Packit Service 103f6b
  type : 'boolean',
Packit Service 103f6b
  value : false,
Packit Service 103f6b
  description : 'Enable support for freedreno to use downstream android kernel API.',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'install-test-programs',
Packit Service 103f6b
  type : 'boolean',
Packit Service 103f6b
  value : false,
Packit Service 103f6b
  description : 'Install test programs.',
Packit Service 103f6b
)
Packit Service 103f6b
option(
Packit Service 103f6b
  'udev',
Packit Service 103f6b
  type : 'boolean',
Packit Service 103f6b
  value : false,
Packit Service 103f6b
  description : 'Enable support for using udev instead of mknod.',
Packit Service 103f6b
)