You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
694 B
20 lines
694 B
include(ECMMarkAsTest) |
|
|
|
macro(KWINEFFECTS_UNIT_TESTS) |
|
foreach(_testname ${ARGN}) |
|
add_executable(${_testname} ${_testname}.cpp) |
|
add_test(NAME kwineffects-${_testname} COMMAND ${_testname}) |
|
target_link_libraries(${_testname} Qt::Test kwin) |
|
ecm_mark_as_test(${_testname}) |
|
endforeach() |
|
endmacro() |
|
|
|
kwineffects_unit_tests( |
|
windowquadlisttest |
|
timelinetest |
|
) |
|
|
|
add_executable(kwinglplatformtest kwinglplatformtest.cpp ../../src/opengl/glplatform.cpp ../../src/utils/version.cpp) |
|
add_test(NAME kwineffects-kwinglplatformtest COMMAND kwinglplatformtest) |
|
target_link_libraries(kwinglplatformtest Qt::Test Qt::Gui KF6::ConfigCore) |
|
ecm_mark_as_test(kwinglplatformtest)
|
|
|