Enable CMake autotests

Task-number: QTBUG-84884
Change-Id: I653746159c57d78db45a1a0b8a059ffed355fa4b
Reviewed-by:  Alexey Edelev <alexey.edelev@qt.io>
This commit is contained in:
Joerg Bornemann 2024-01-10 12:56:53 +01:00
parent 50db096a26
commit 60ac2d0628
2 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,9 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
if(NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "QNX") # QTBUG-121487
add_subdirectory(cmake)
endif()
add_subdirectory(qcoapclient)
add_subdirectory(qcoapmessage)
add_subdirectory(qcoapoption)

View File

@ -3,14 +3,14 @@
cmake_minimum_required(VERSION 3.16)
project(qmake_cmake_files)
project(qtcoap_cmake_tests)
enable_testing()
find_package(Qt5Core REQUIRED)
find_package(Qt6Core REQUIRED)
include("${_Qt5CTestMacros}")
include("${_Qt6CTestMacros}")
test_module_includes(
_qt_internal_test_module_includes(
Coap QCoapClient
)