summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authoradarshgm <adarsh.g.m@intel.com>2023-03-07 05:21:19 +0000
committerJonas Ã…dahl <jadahl@gmail.com>2023-05-02 17:37:01 +0000
commit7f18cae282561be3a53179d8186ff3dd5b1fefc5 (patch)
tree8a4175d2d92bc1ad77e7df4ebc5ee68b75abbf33 /meson_options.txt
parentd643eb5c6fe50e7f1afffda0e8747a87f668a799 (diff)
downloadmutter-7f18cae282561be3a53179d8186ff3dd5b1fefc5.tar.gz
edid: Integrate libdisplay-info for edid parsing
Hides libdisplay-info under a build time default-off flag, provides provision to parse essential edid parameters with APIs provided by libdisplay-info. This implementaion increases readibility, avoids code duplication and decreases complexity of edid parsing. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2642>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index a13a25c9b..b5d215b24 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -224,3 +224,9 @@ option('catch',
value: false,
description: 'Use catch to catch backtraces'
)
+
+option('libdisplay_info',
+ type: 'boolean',
+ value: false,
+ description: 'Build with or without libdisplay-info'
+)