From f96365db993c5ae7a13c0e0d70b6ce619cc69e1a Mon Sep 17 00:00:00 2001 From: Ahmad Samir Date: Tue, 15 Aug 2023 00:24:53 +0300 Subject: [PATCH] tst_QDnsLookup: fix typo in CMakeListst.txt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was an extra `q` before dnslookup. Found while trying to build tst_qdnslookup, the target wasn't seen by CMake/Ninja. Change-Id: Id594aab30dc9081fc269541561e0f2db5e615657 Reviewed-by: MÃ¥rten Nordheim Reviewed-by: Qt CI Bot (cherry picked from commit 0ce51dee0e3c0d0e49c2ad211bdbbed03003d3a4) Reviewed-by: Qt Cherry-pick Bot --- tests/auto/network/kernel/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/network/kernel/CMakeLists.txt b/tests/auto/network/kernel/CMakeLists.txt index 52928e7aa14..b42a9724b3e 100644 --- a/tests/auto/network/kernel/CMakeLists.txt +++ b/tests/auto/network/kernel/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (C) 2022 The Qt Company Ltd. # SPDX-License-Identifier: BSD-3-Clause -if(QT_FEATURE_qdnslookup) +if(QT_FEATURE_dnslookup AND (QT_FEATURE_libresolv OR WIN32)) add_subdirectory(qdnslookup) add_subdirectory(qdnslookup_appless) endif()