cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
24 lines
609 B
CMake
24 lines
609 B
CMake
remove_definitions(-DQT_NO_CAST_FROM_ASCII)
|
|
remove_definitions(-DQT_NO_CAST_TO_ASCII)
|
|
|
|
include(ECMMarkAsTest)
|
|
|
|
find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Test Widgets)
|
|
|
|
macro(kguiaddons_executable_tests)
|
|
foreach(_testname ${ARGN})
|
|
add_executable(${_testname} ${_testname}.cpp)
|
|
target_link_libraries(${_testname} Qt6::Widgets KF6::GuiAddons)
|
|
ecm_mark_as_test(${_testname})
|
|
endforeach(_testname)
|
|
endmacro()
|
|
|
|
kguiaddons_executable_tests(
|
|
kcolorcollectiontest
|
|
kmodifierkeyinfotest
|
|
openurltest
|
|
kcursorsavergui_test
|
|
kcolorschemewatchertest
|
|
kcountryflagemojiiconenginedemo
|
|
)
|