1447f4641c
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.
13 lines
392 B
CMake
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)
|