2013-11-25 08:26:17 +00:00
|
|
|
include(ECMMarkAsTest)
|
|
|
|
|
|
|
|
macro(KWINEFFECTS_UNIT_TESTS)
|
|
|
|
foreach(_testname ${ARGN})
|
|
|
|
add_executable(${_testname} ${_testname}.cpp)
|
2017-08-25 16:18:20 +00:00
|
|
|
add_test(NAME kwineffects-${_testname} COMMAND ${_testname})
|
2013-11-25 08:26:17 +00:00
|
|
|
target_link_libraries(${_testname} Qt5::Test kwineffects)
|
|
|
|
ecm_mark_as_test(${_testname})
|
|
|
|
endforeach()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
kwineffects_unit_tests(
|
|
|
|
windowquadlisttest
|
|
|
|
)
|
2016-08-05 06:47:32 +00:00
|
|
|
|
|
|
|
add_executable(kwinglplatformtest kwinglplatformtest.cpp mock_gl.cpp ../../libkwineffects/kwinglplatform.cpp)
|
2017-08-25 16:18:20 +00:00
|
|
|
add_test(NAME kwineffects-kwinglplatformtest COMMAND kwinglplatformtest)
|
2016-08-23 09:43:43 +00:00
|
|
|
target_link_libraries(kwinglplatformtest Qt5::Test Qt5::Gui Qt5::X11Extras KF5::ConfigCore XCB::XCB)
|
2016-08-05 06:47:32 +00:00
|
|
|
ecm_mark_as_test(kwinglplatformtest)
|