QT_SKIP_DEFAULT_TESTCASE_DIRS

This variable was introduced in Qt 6.9.

Note: This variable is in technology preview and may change in future releases.

Disables the test case directory definitions for the Qt Test targets.

Controls the default value of the QT_SKIP_DEFAULT_TESTCASE_DIRS target property.

Note: Supported by CMake versions >= 3.23.

set(QT_SKIP_DEFAULT_TESTCASE_DIRS TRUE)
...
qt_add_executable(mytest1 main1.cpp)
target_link_libraries(mytest1 PRIVATE Qt6::Test)
...
qt_add_executable(mytest2 main2.cpp)
target_link_libraries(mytest2 PRIVATE Qt6::Test)

The QT_TESTCASE_SOURCEDIR and QT_TESTCASE_BUILDDIR macros will remain undefined when compiling mytest1 and mytest2.

See also QFINDTESTDATA and QT_SKIP_DEFAULT_TESTCASE_DIRS.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.