Warning, /frameworks/baloo/autotests/unit/engine/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 MACRO(BALOO_ENGINE_AUTO_TESTS)
0002   FOREACH(_testname ${ARGN})
0003     ecm_add_test(${_testname}.cpp singledbtest.cpp
0004         TEST_NAME ${_testname}
0005         LINK_LIBRARIES Qt6::Test KF6::BalooEngine
0006     )
0007   ENDFOREACH()
0008 ENDMACRO()
0009 
0010 baloo_engine_auto_tests(
0011     positiondbtest
0012     postingdbtest
0013     documentdbtest
0014     documenturldbtest
0015     documentiddbtest
0016     documentdatadbtest
0017     documenttimedbtest
0018     idtreedbtest
0019     idfilenamedbtest
0020     mtimedbtest
0021 
0022     termgeneratortest
0023 
0024     # Query
0025     andpostingiteratortest
0026     orpostingiteratortest
0027     postingiteratortest
0028     phraseanditeratortest
0029 )