libmali-rockchip-tsukumijima/meson_options.txt
Jeffy Chen c3b4a820e1 Support installing khrplatform.h again
Currently the KHR header is depended by mesa's EGL/GLES/GL headers, and
would be provided in mesa-common-dev.

So for the usage of mixing mesa's GL with mali's EGL/GLES, we have to
leave it to mesa's version and let mali uses it's own.

But for people who doesn't want mesa, let's add an option to allow
installing it in mali.

Change-Id: Id6e88e2d7f3c4f6092a3cf1f1078a6a7f284f823
Suggested-by: Gleb Mazovetskiy <glex.spb@gmail.com>
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
2021-01-30 04:44:34 +08:00

16 lines
977 B
Meson

option('arch', type: 'combo', choices: ['auto', 'arm', 'armv7l', 'armhf', 'arm32', 'armv8', 'arm64', 'aarch64'],
description: 'arch (default: auto)')
option('gpu', type: 'string', value: 'midgard-t86x',
description: 'GPU name (default: midgard-t86x)')
option('version', type: 'string', value: 'r18p0',
description: 'GPU version (default: r18p0)')
option('subversion', type: 'string', value: 'none',
description: 'subversion (default: none)')
option('platform', type: 'combo', choices: ['x11', 'gbm', 'wayland', 'only-cl', 'dummy'],
value: 'x11', description: 'platform (default: x11)')
option('with-overlay', type: 'boolean', value: 'false',
description: 'install overlay (default: false)')
option('opencl-icd', type: 'boolean', value: 'true',
description: 'OpenCL Installable Client Driver (ICD) (default: true)')
option('khr-header', type: 'boolean', value: 'false',
description: 'Install KHR header (default: false)')