2012-06-03 07:15:10 +00:00
|
|
|
########################################################
|
|
|
|
# Test ScreenPaintData
|
|
|
|
########################################################
|
|
|
|
set( testScreenPaintData_SRCS test_screen_paint_data.cpp )
|
2014-03-18 10:49:53 +00:00
|
|
|
add_executable(testScreenPaintData ${testScreenPaintData_SRCS})
|
2014-03-18 16:53:22 +00:00
|
|
|
target_link_libraries( testScreenPaintData kwineffects Qt5::Test Qt5::Widgets KF5::WindowSystem)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_test(kwin-testScreenPaintData testScreenPaintData)
|
|
|
|
ecm_mark_as_test(testScreenPaintData)
|
2012-06-03 07:15:10 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Test WindowPaintData
|
|
|
|
########################################################
|
|
|
|
set( testWindowPaintData_SRCS test_window_paint_data.cpp )
|
2014-03-18 10:49:53 +00:00
|
|
|
add_executable(testWindowPaintData ${testWindowPaintData_SRCS})
|
2013-08-20 07:10:18 +00:00
|
|
|
target_link_libraries( testWindowPaintData kwineffects Qt5::Widgets Qt5::Test )
|
2014-03-18 10:49:53 +00:00
|
|
|
add_test(kwin-testWindowPaintData testWindowPaintData)
|
|
|
|
ecm_mark_as_test(testWindowPaintData)
|
2012-11-16 07:23:47 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Test VirtualDesktopManager
|
|
|
|
########################################################
|
2014-01-07 12:45:25 +00:00
|
|
|
set( testVirtualDesktops_SRCS
|
|
|
|
test_virtual_desktops.cpp
|
|
|
|
../virtualdesktops.cpp
|
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_executable(testVirtualDesktops ${testVirtualDesktops_SRCS})
|
2014-01-07 12:45:25 +00:00
|
|
|
|
|
|
|
target_link_libraries( testVirtualDesktops
|
|
|
|
Qt5::Test
|
|
|
|
Qt5::Widgets
|
|
|
|
KF5::I18n
|
|
|
|
KF5::GlobalAccel
|
|
|
|
KF5::ConfigCore
|
|
|
|
KF5::WindowSystem
|
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_test(kwin-testVirtualDesktops testVirtualDesktops)
|
|
|
|
ecm_mark_as_test(testVirtualDesktops)
|
2013-01-07 07:07:27 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Test ClientMachine
|
|
|
|
########################################################
|
|
|
|
set( testClientMachine_SRCS
|
|
|
|
test_client_machine.cpp
|
|
|
|
../client_machine.cpp
|
2013-05-13 07:25:18 +00:00
|
|
|
../utils.cpp
|
|
|
|
../atoms.cpp # needed by utils.cpp
|
|
|
|
../cursor.cpp # needed by utils.cpp
|
2013-01-07 07:07:27 +00:00
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_executable( testClientMachine ${testClientMachine_SRCS} )
|
2013-01-07 07:07:27 +00:00
|
|
|
|
|
|
|
target_link_libraries( testClientMachine
|
2013-10-02 13:23:56 +00:00
|
|
|
Qt5::Concurrent
|
2013-08-20 07:10:18 +00:00
|
|
|
Qt5::Test
|
|
|
|
Qt5::X11Extras
|
|
|
|
Qt5::Widgets
|
2013-06-27 07:06:16 +00:00
|
|
|
KF5::ConfigCore
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::WindowSystem
|
2014-03-18 16:53:22 +00:00
|
|
|
KF5::Service
|
2014-02-25 14:48:39 +00:00
|
|
|
XCB::XCB
|
|
|
|
XCB::XFIXES
|
2013-05-13 07:58:04 +00:00
|
|
|
${X11_X11_LIB} # to make jenkins happy
|
2013-05-13 08:19:52 +00:00
|
|
|
${X11_Xcursor_LIB}
|
2013-01-07 07:07:27 +00:00
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_test(kwin-testClientMachine testClientMachine)
|
|
|
|
ecm_mark_as_test(testClientMachine)
|
2013-01-14 08:20:59 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Test XcbWrapper
|
|
|
|
########################################################
|
|
|
|
set( testXcbWrapper_SRCS
|
|
|
|
test_xcb_wrapper.cpp
|
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_executable( testXcbWrapper ${testXcbWrapper_SRCS} )
|
2013-01-14 08:20:59 +00:00
|
|
|
|
|
|
|
target_link_libraries( testXcbWrapper
|
2013-08-20 07:10:18 +00:00
|
|
|
Qt5::Test
|
|
|
|
Qt5::X11Extras
|
|
|
|
Qt5::Widgets
|
2014-03-18 13:38:00 +00:00
|
|
|
KF5::WindowSystem
|
2014-02-25 14:48:39 +00:00
|
|
|
XCB::XCB
|
2013-01-14 08:20:59 +00:00
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_test(kwin-testXcbWrapper testXcbWrapper)
|
|
|
|
ecm_mark_as_test(testXcbWrapper)
|
2013-01-29 13:03:05 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Test XcbWindow
|
|
|
|
########################################################
|
|
|
|
set( testXcbWindow_SRCS
|
|
|
|
test_xcb_window.cpp
|
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_executable( testXcbWindow ${testXcbWindow_SRCS} )
|
2013-01-29 13:03:05 +00:00
|
|
|
|
|
|
|
target_link_libraries( testXcbWindow
|
2013-08-20 07:10:18 +00:00
|
|
|
Qt5::Test
|
|
|
|
Qt5::X11Extras
|
|
|
|
Qt5::Widgets
|
2014-03-18 13:38:00 +00:00
|
|
|
KF5::WindowSystem
|
2014-02-25 14:48:39 +00:00
|
|
|
XCB::XCB
|
2013-01-29 13:03:05 +00:00
|
|
|
)
|
2014-03-18 10:49:53 +00:00
|
|
|
add_test(kwin-testXcbWindow testXcbWindow)
|
|
|
|
ecm_mark_as_test(testXcbWindow)
|