dcf91d4321
We have lots of inconsistency at the moment in CMakeLists.txt files. Most of it is due to kwin being a very old project. This change hopefully fixes all of it.
13 lines
401 B
CMake
13 lines
401 B
CMake
add_executable(blendPictureTest blendpicture_test.cpp)
|
|
set_target_properties(blendPictureTest PROPERTIES COMPILE_DEFINITIONS "NO_NONE_WINDOW")
|
|
add_test(NAME xrenderutils-blendPictureTest COMMAND blendPictureTest)
|
|
target_link_libraries(blendPictureTest
|
|
kwinxrenderutils
|
|
Qt5::Test
|
|
Qt5::Gui
|
|
Qt5::X11Extras
|
|
XCB::XCB
|
|
XCB::RENDER
|
|
XCB::XFIXES
|
|
)
|
|
ecm_mark_as_test(blendPictureTest)
|