15 lines
368 B
CMake
15 lines
368 B
CMake
|
include(ECMMarkAsTest)
|
||
|
|
||
|
macro(KWINEFFECTS_UNIT_TESTS)
|
||
|
foreach(_testname ${ARGN})
|
||
|
add_executable(${_testname} ${_testname}.cpp)
|
||
|
add_test(kwineffects-${_testname} ${_testname})
|
||
|
target_link_libraries(${_testname} Qt5::Test kwineffects)
|
||
|
ecm_mark_as_test(${_testname})
|
||
|
endforeach()
|
||
|
endmacro()
|
||
|
|
||
|
kwineffects_unit_tests(
|
||
|
windowquadlisttest
|
||
|
)
|