kwin/autotests/libxrenderutils/CMakeLists.txt
Martin Flöser 1447f4641c [autotests] Fix unused function warnings
The functions are defined in a common header but not used in all tests.
This creates needless warning noise, so hide them through an ifdef.
2017-07-29 18:47:58 +02:00

13 lines
392 B
CMake

add_executable(blendPictureTest blendpicture_test.cpp)
set_target_properties(blendPictureTest PROPERTIES COMPILE_DEFINITIONS "NO_NONE_WINDOW")
add_test(xrenderutils-blendPictureTest blendPictureTest)
target_link_libraries(blendPictureTest
kwinxrenderutils
Qt5::Test
Qt5::Gui
Qt5::X11Extras
XCB::XCB
XCB::RENDER
XCB::XFIXES
)
ecm_mark_as_test(blendPictureTest)