From 3c9e134287362f3273ff04a86f32838b65b2651e Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Fri, 24 Feb 2023 16:02:47 +0200 Subject: meson: Add summary Add summary print for meson configuration. Signed-off-by: Tomi Valkeinen --- kmscube/meson.build | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'kmscube') diff --git a/kmscube/meson.build b/kmscube/meson.build index 7b87941..fd0fb96 100644 --- a/kmscube/meson.build +++ b/kmscube/meson.build @@ -1,7 +1,14 @@ +if not get_option('kmscube') + kmscube_enabled = false + subdir_done() +endif + if not get_option('libutils') error('"kmscube" option requires "libutils" option enabled') endif +kmscube_enabled = true + kmscube_sources = files([ 'cube.cpp', 'cube-egl.cpp', -- cgit v1.2.3