Warning, /libraries/ktextaddons/textautocorrection/widgets/autotests/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # SPDX-License-Identifier: BSD-3-Clause
0002 # SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 macro(add_autocorrectwidgets_unittest _source)
0004   set(_test ${_source})
0005   get_filename_component(_name ${_source} NAME_WE)
0006   add_executable( ${_name} ${_test} ${_name}.h)
0007   add_test(NAME ${_name} COMMAND ${_name} )
0008   set_tests_properties(${_name} PROPERTIES ENVIRONMENT "QT_HASH_SEED=0")
0009   ecm_mark_as_test(autocorrectionwidgets-${_name})
0010   target_link_libraries(${_name}  Qt::Test KF${KF_MAJOR_VERSION}::TextAutoCorrectionWidgets)
0011 endmacro()
0012 
0013 add_autocorrectwidgets_unittest(autocorrectiontextedittest.cpp)