From 03f4630cf507762497525562424dedad0f393a3a Mon Sep 17 00:00:00 2001 From: Ville Voutilainen Date: Sat, 6 May 2023 20:57:39 +0300 Subject: Disable the graphicshelpergl tests on Android They don't build on NDK 25, if anywhere, since Android uses GLES or Vulkan. Change-Id: I64a207a3543aa2274c28617241f9e278dd7b9aa2 Reviewed-by: Rami Potinkara Reviewed-by: Assam Boudjelthia Reviewed-by: Laszlo Agocs --- tests/auto/render/opengl/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/auto/render/opengl/CMakeLists.txt b/tests/auto/render/opengl/CMakeLists.txt index 696d97bc0..778319a1d 100644 --- a/tests/auto/render/opengl/CMakeLists.txt +++ b/tests/auto/render/opengl/CMakeLists.txt @@ -5,9 +5,11 @@ if (NOT QT_BUILD_STANDALONE_TESTS) add_subdirectory(filtercompatibletechniquejob) +if (NOT ANDROID) add_subdirectory(graphicshelpergl3_3) add_subdirectory(graphicshelpergl3_2) add_subdirectory(graphicshelpergl2) +endif() add_subdirectory(glshadermanager) add_subdirectory(textures) add_subdirectory(renderer) @@ -21,7 +23,7 @@ if (NOT QT_BUILD_STANDALONE_TESTS) if(TARGET Qt::Quick) add_subdirectory(materialparametergathererjob) endif() - if(NOT MACOS) + if(NOT MACOS AND NOT ANDROID) add_subdirectory(graphicshelpergl4) endif() endif() -- cgit v1.2.1