From 829243d7fe95912110d9a3a3f1752020d8637a8d Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Sun, 22 May 2022 15:52:28 +0200 Subject: [PATCH] Android: Enable building of the QLocale test case Amends 2a893db48017a850044156442b93d935c78e941d, which changed the #ifdef'ery but didn't actually enable the building of the test on Android. Task-number: QTBUG-87414 Change-Id: Id944dd3023da40ecbf4b8a324784409a63f94aec Reviewed-by: Ivan Solovev (cherry picked from commit 6b02c85f874886e7f5a467a8b63f0ca995b995b7) Reviewed-by: Volker Hilsheimer --- tests/auto/corelib/text/CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/auto/corelib/text/CMakeLists.txt b/tests/auto/corelib/text/CMakeLists.txt index 40bacf20374..c1af6828366 100644 --- a/tests/auto/corelib/text/CMakeLists.txt +++ b/tests/auto/corelib/text/CMakeLists.txt @@ -22,7 +22,4 @@ add_subdirectory(qstringmatcher) add_subdirectory(qstringtokenizer) add_subdirectory(qstringview) add_subdirectory(qtextboundaryfinder) -# QTBUG-87414 # special case -if(NOT ANDROID) - add_subdirectory(qlocale) -endif() +add_subdirectory(qlocale)