diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meson.build b/meson.build index a20cc29e..9684d562 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,11 @@ # SPDX-License-Identifier: CC0-1.0 project('libcamera', 'c', 'cpp', - meson_version : '>= 0.55', + # Use of the Android component requires meson 0.55, but Ubuntu 20.04 LTS + # ships meson 0.53. Improve the Ubuntu experience at the expense of + # Android as the former is a much more common use case than the latter at + # this point. This should be fixed after Ubuntu releases 22.04 LTS. + meson_version : '>= 0.53', version : '0.0.0', default_options : [ 'werror=true', |