summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorGurchetan Singh <gurchetansingh@chromium.org>2019-03-15 10:08:45 -0700
committerGurchetan Singh <gurchetansingh@chromium.org>2019-03-21 15:36:39 -0700
commitb07086104533060b833f5d70200dae3c0da6ff7d (patch)
tree3e1309daa8fac86ab2a264f478aef8c4de3e5e2d /meson_options.txt
parentbfed0a7099c2205859f85077976ca143c3c1e840 (diff)
configure.ac / meson: depend on libnativewindow when appropriate
libnativewindow is only available on O or greater, and it's required for some features. Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 45faa341e79..5c063054ca1 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -347,3 +347,11 @@ option(
value : '',
description : 'Suffix to append to GLES library names. Default: none.'
)
+option(
+ 'platform-sdk-version',
+ type : 'integer',
+ min : 25,
+ max : 28,
+ value : 25,
+ description : 'Android Platform SDK version. Default: Nougat version.'
+)