summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@qt.io>2023-05-06 20:57:39 +0300
committerVille Voutilainen <ville.voutilainen@qt.io>2023-05-09 12:00:25 +0300
commit03f4630cf507762497525562424dedad0f393a3a (patch)
tree50aecf7e4a418525f284e44311d5165aa4b0a85b
parentb88c719fc261ac1d795bec3f049884d1586a692e (diff)
downloadqt3d-03f4630cf507762497525562424dedad0f393a3a.tar.gz
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 <rami.potinkara@qt.io> Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io> Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
-rw-r--r--tests/auto/render/opengl/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
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()