summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2022-11-10 17:16:39 +0000
committerEric Engestrom <eric@engestrom.ch>2022-11-10 17:16:55 +0000
commit345111481d654b38a72b5c3629151dc74f7a82bc (patch)
tree484ffe5ab6c30c22acd58934f8b159a422293575
parent61fb902a021eb3ba14468c4cc1057c37cf306063 (diff)
downloadkmscube-345111481d654b38a72b5c3629151dc74f7a82bc.tar.gz
meson: upgrade the "GLES3 not supported" message into a warning
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 626039e..3214094 100644
--- a/meson.build
+++ b/meson.build
@@ -62,7 +62,7 @@ if with_gles3
add_project_arguments('-DHAVE_GLES3', language : 'c')
message('GLES3 supported; shadertoy & texturator are included in this build')
else
- message('GLES3 not supported; shadertoy & texturator are NOT included in this build')
+ warning('GLES3 not supported; shadertoy & texturator are NOT included in this build')
endif
dep_libpng = dependency('libpng', required : false)