cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
26 lines
670 B
CMake
26 lines
670 B
CMake
remove_definitions(-DQT_NO_CAST_FROM_ASCII)
|
|
remove_definitions(-DQT_NO_CAST_TO_ASCII)
|
|
|
|
include(ECMMarkAsTest)
|
|
|
|
find_package(Qt6Test ${REQUIRED_QT_VERSION} CONFIG QUIET)
|
|
|
|
if(NOT Qt6Test_FOUND)
|
|
message(STATUS "Qt6Test not found, manual tests will not be built.")
|
|
return()
|
|
endif()
|
|
|
|
macro(kcompletion_executable_tests)
|
|
foreach(_testname ${ARGN})
|
|
add_executable(${_testname} ${_testname}.cpp ${_testname}.h)
|
|
target_link_libraries(${_testname} Qt6::Test Qt6::Widgets KF6::Completion KF6::ConfigCore)
|
|
ecm_mark_as_test(${_testname})
|
|
endforeach(_testname)
|
|
endmacro()
|
|
|
|
kcompletion_executable_tests(
|
|
kcomboboxtest
|
|
kcompletionuitest
|
|
klineedittest
|
|
)
|