blob: 9fa4a66271fd59957a38969b16e49123f9cbe797 (
plain)
123456789101112131415161718192021222324252627 | # Copyright (C) 2024 The Qt Company Ltd.# SPDX-License-Identifier: BSD-3-Clause# This file contains the property definitions that are known by Qt Testif(CMAKE_VERSION VERSION_GREATER_EQUAL"3.23")set(qt_skip_default_testcase_dirs_extra_agrs INITIALIZE_FROM_VARIABLEQT_SKIP_DEFAULT_TESTCASE_DIRS)elseif(DEFINED QT_SKIP_DEFAULT_TESTCASE_DIRS)message(WARNING"QT_SKIP_DEFAULT_TESTCASE_DIRS is set to ${QT_SKIP_DEFAULT_TESTCASE_DIRS},"" but the variable is not supported by this CMake version. Please set the"" QT_SKIP_DEFAULT_TESTCASE_DIRS target property where is required.")endif()define_property(TARGETPROPERTYQT_SKIP_DEFAULT_TESTCASE_DIRSBRIEF_DOCS"Disables the test case directory definitions for the Qt Test targets."FULL_DOCS"By default the definitions QT_TESTCASE_SOURCEDIR and QT_TESTCASE_BUILDDIR point to the target source and build directories of the target accordingly. If QT_SKIP_DEFAULT_TESTCASE_DIRS is set to TRUE the macros remain empty."${qt_skip_default_testcase_dirs_extra_agrs})
|