summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2022-02-11 19:01:03 +0100
committerChristian Persch <chpe@src.gnome.org>2022-02-11 19:01:03 +0100
commit62da45c67465fe94fd962788729020738292b15f (patch)
tree0f17893db00689fd828287f9cf66d2c1865e329c
parent5fa45b4b177989d35fad927e9f8f9d57d4dbba2a (diff)
downloadvte-62da45c67465fe94fd962788729020738292b15f.tar.gz
build: Assert on non-supported option on stable branch
(cherry picked from commit 1e38c581b8cc45be46e0bb1f2fec2df50712bb3b)
-rw-r--r--meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 381d5d58..6c353105 100644
--- a/meson.build
+++ b/meson.build
@@ -192,6 +192,8 @@ if get_option('gtk3')
endif
if get_option('gtk4')
+ assert(false, 'gtk4 is not supported on this branch; use git master')
+
gtk4_version_cppflags = []
ver = gtk4_min_req_version.split('.')