summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Kittler <[email protected]>2025-06-09 21:15:42 +0200
committerMarius Kittler <[email protected]>2025-07-04 02:35:58 +0200
commit98ea645166ba49e2cd93a4998465c3e6bc3137b6 (patch)
tree6df3ec714d6894fa24d0d32510a3d6964ee2d93f
parent3f61f736266ece40d627dcf6214618a22a009fd1 (diff)
Enable minimal and offscreen plugins when compiling for AndroidHEADdev
Those platform plugins are very useful to run "graphical" code from services, e.g. to render a QIcon to use it as icon of a foreground service notification. Change-Id: I1ebc70aa7c68c68ab690df030f1462f5e9d4ab54 Reviewed-by: Tor Arne Vestbø <[email protected]> Reviewed-by: Volker Hilsheimer <[email protected]> Reviewed-by: Assam Boudjelthia <[email protected]>
-rw-r--r--src/plugins/platforms/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/platforms/CMakeLists.txt b/src/plugins/platforms/CMakeLists.txt
index f30c27c24be..498a0772bc9 100644
--- a/src/plugins/platforms/CMakeLists.txt
+++ b/src/plugins/platforms/CMakeLists.txt
@@ -4,10 +4,10 @@
if(ANDROID)
add_subdirectory(android)
endif()
-if(NOT ANDROID AND NOT WASM)
+if(NOT WASM)
add_subdirectory(minimal)
endif()
-if(QT_FEATURE_freetype AND NOT ANDROID AND NOT WASM)
+if(QT_FEATURE_freetype AND NOT WASM)
add_subdirectory(offscreen)
endif()
if(QT_FEATURE_xcb)