From e5ea3e68ccf1856d6cce97bd807492e3c229d02c Mon Sep 17 00:00:00 2001 From: Matthias Rauter Date: Wed, 12 Feb 2025 13:43:42 +0100 Subject: [PATCH] Alphabetically order CMakeList entries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8dfc3521aac8d71b0a8b5148e201fa1a98e53a03 Reviewed-by: Thiago Macieira Reviewed-by: Piotr WierciƄski --- tests/auto/corelib/text/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/auto/corelib/text/CMakeLists.txt b/tests/auto/corelib/text/CMakeLists.txt index 90527a87db4..3c392cc47ae 100644 --- a/tests/auto/corelib/text/CMakeLists.txt +++ b/tests/auto/corelib/text/CMakeLists.txt @@ -15,6 +15,9 @@ add_subdirectory(qchar) add_subdirectory(qcollator) add_subdirectory(qlatin1stringmatcher) add_subdirectory(qlatin1stringview) +if (NOT WASM) # QTBUG-133219 +add_subdirectory(qlocale) +endif() if (NOT WASM) # QTBUG-121822 add_subdirectory(qregularexpression) endif() @@ -30,6 +33,3 @@ add_subdirectory(qstringtokenizer) add_subdirectory(qstringview) add_subdirectory(qtextboundaryfinder) add_subdirectory(qunicodetools) -if (NOT WASM) # QTBUG-133219 -add_subdirectory(qlocale) -endif()