Port to renamed kwayland
https://invent.kde.org/plasma/kwayland/-/merge_requests/107 use renamed kwayland
This commit is contained in:
parent
9e03a219cb
commit
cc4eac4c85
6 changed files with 54 additions and 54 deletions
|
@ -108,8 +108,8 @@ set_package_properties(Threads PROPERTIES
|
|||
TYPE REQUIRED
|
||||
)
|
||||
|
||||
find_package(KF6Wayland ${PROJECT_VERSION} CONFIG)
|
||||
set_package_properties(KF6Wayland PROPERTIES
|
||||
find_package(KWayland ${PROJECT_VERSION} CONFIG)
|
||||
set_package_properties(KWayland PROPERTIES
|
||||
PURPOSE "Required to build wayland platform plugin and tests"
|
||||
TYPE REQUIRED
|
||||
)
|
||||
|
|
|
@ -33,7 +33,7 @@ target_sources(KWinIntegrationTestFramework PRIVATE
|
|||
target_link_libraries(KWinIntegrationTestFramework
|
||||
PUBLIC
|
||||
Qt::Test
|
||||
KF6::WaylandClient
|
||||
Plasma::KWaylandClient
|
||||
Wayland::Client
|
||||
Libdrm::Libdrm
|
||||
kwin
|
||||
|
|
|
@ -6,7 +6,7 @@ set( testWaylandOutput_SRCS
|
|||
${PROJECT_SOURCE_DIR}/tests/fakeoutput.cpp
|
||||
)
|
||||
add_executable(testWaylandOutput ${testWaylandOutput_SRCS})
|
||||
target_link_libraries( testWaylandOutput Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client Wayland::Server)
|
||||
target_link_libraries( testWaylandOutput Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client Wayland::Server)
|
||||
add_test(NAME kwayland-testWaylandOutput COMMAND testWaylandOutput)
|
||||
ecm_mark_as_test(testWaylandOutput)
|
||||
|
||||
|
@ -18,7 +18,7 @@ set( testWaylandSurface_SRCS
|
|||
${PROJECT_SOURCE_DIR}/tests/fakeoutput.cpp
|
||||
)
|
||||
add_executable(testWaylandSurface ${testWaylandSurface_SRCS})
|
||||
target_link_libraries( testWaylandSurface Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client Wayland::Server)
|
||||
target_link_libraries( testWaylandSurface Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client Wayland::Server)
|
||||
add_test(NAME kwayland-testWaylandSurface COMMAND testWaylandSurface)
|
||||
ecm_mark_as_test(testWaylandSurface)
|
||||
|
||||
|
@ -32,7 +32,7 @@ set( testWaylandSeat_SRCS
|
|||
qt6_generate_wayland_protocol_client_sources(testWaylandSeat FILES
|
||||
${WaylandProtocols_DATADIR}/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml)
|
||||
target_sources(testWaylandSeat PRIVATE ${testWaylandSeat_SRCS})
|
||||
target_link_libraries( testWaylandSeat Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client Wayland::Server)
|
||||
target_link_libraries( testWaylandSeat Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client Wayland::Server)
|
||||
add_test(NAME kwayland-testWaylandSeat COMMAND testWaylandSeat)
|
||||
ecm_mark_as_test(testWaylandSeat)
|
||||
|
||||
|
@ -43,7 +43,7 @@ set( testShmPool_SRCS
|
|||
test_shm_pool.cpp
|
||||
)
|
||||
add_executable(testShmPool ${testShmPool_SRCS})
|
||||
target_link_libraries( testShmPool Qt::Test Qt::Gui KF6::WaylandClient kwin)
|
||||
target_link_libraries( testShmPool Qt::Test Qt::Gui Plasma::KWaylandClient kwin)
|
||||
add_test(NAME kwayland-testShmPool COMMAND testShmPool)
|
||||
ecm_mark_as_test(testShmPool)
|
||||
|
||||
|
@ -54,7 +54,7 @@ set( testSubSurface_SRCS
|
|||
test_wayland_subsurface.cpp
|
||||
)
|
||||
add_executable(testSubSurface ${testSubSurface_SRCS})
|
||||
target_link_libraries( testSubSurface Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testSubSurface Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testSubSurface COMMAND testSubSurface)
|
||||
ecm_mark_as_test(testSubSurface)
|
||||
|
||||
|
@ -65,7 +65,7 @@ set( testBlur_SRCS
|
|||
test_wayland_blur.cpp
|
||||
)
|
||||
add_executable(testBlur ${testBlur_SRCS})
|
||||
target_link_libraries( testBlur Qt::Test Qt::Gui KF6::WaylandClient kwin)
|
||||
target_link_libraries( testBlur Qt::Test Qt::Gui Plasma::KWaylandClient kwin)
|
||||
add_test(NAME kwayland-testBlur COMMAND testBlur)
|
||||
ecm_mark_as_test(testBlur)
|
||||
|
||||
|
@ -76,7 +76,7 @@ set( testContrast_SRCS
|
|||
test_wayland_contrast.cpp
|
||||
)
|
||||
add_executable(testContrast ${testContrast_SRCS})
|
||||
target_link_libraries( testContrast Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testContrast Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testContrast COMMAND testContrast)
|
||||
ecm_mark_as_test(testContrast)
|
||||
|
||||
|
@ -87,7 +87,7 @@ set( testSlide_SRCS
|
|||
test_wayland_slide.cpp
|
||||
)
|
||||
add_executable(testSlide ${testSlide_SRCS})
|
||||
target_link_libraries( testSlide Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testSlide Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testSlide COMMAND testSlide)
|
||||
ecm_mark_as_test(testSlide)
|
||||
|
||||
|
@ -98,7 +98,7 @@ set( testWindowmanagement_SRCS
|
|||
test_wayland_windowmanagement.cpp
|
||||
)
|
||||
add_executable(testWindowmanagement ${testWindowmanagement_SRCS})
|
||||
target_link_libraries( testWindowmanagement Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testWindowmanagement Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testWindowmanagement COMMAND testWindowmanagement)
|
||||
ecm_mark_as_test(testWindowmanagement)
|
||||
|
||||
|
@ -109,7 +109,7 @@ set( testDataSource_SRCS
|
|||
test_datasource.cpp
|
||||
)
|
||||
add_executable(testDataSource ${testDataSource_SRCS})
|
||||
target_link_libraries( testDataSource Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testDataSource Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testDataSource COMMAND testDataSource)
|
||||
ecm_mark_as_test(testDataSource)
|
||||
|
||||
|
@ -120,7 +120,7 @@ set( testDataDevice_SRCS
|
|||
test_datadevice.cpp
|
||||
)
|
||||
add_executable(testDataDevice ${testDataDevice_SRCS})
|
||||
target_link_libraries( testDataDevice Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testDataDevice Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testDataDevice COMMAND testDataDevice)
|
||||
ecm_mark_as_test(testDataDevice)
|
||||
|
||||
|
@ -133,7 +133,7 @@ set( testServerSideDecoration_SRCS
|
|||
add_executable(testServerSideDecoration ${testServerSideDecoration_SRCS})
|
||||
qt6_generate_wayland_protocol_client_sources(testServerSideDecoration FILES
|
||||
${PLASMA_WAYLAND_PROTOCOLS_DIR}/server-decoration.xml)
|
||||
target_link_libraries( testServerSideDecoration Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testServerSideDecoration Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testServerSideDecoration COMMAND testServerSideDecoration)
|
||||
ecm_mark_as_test(testServerSideDecoration)
|
||||
|
||||
|
@ -144,7 +144,7 @@ set( testDragAndDrop_SRCS
|
|||
test_drag_drop.cpp
|
||||
)
|
||||
add_executable(testDragAndDrop ${testDragAndDrop_SRCS})
|
||||
target_link_libraries( testDragAndDrop Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testDragAndDrop Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testDragAndDrop COMMAND testDragAndDrop)
|
||||
ecm_mark_as_test(testDragAndDrop)
|
||||
|
||||
|
@ -155,7 +155,7 @@ set( testPlasmaShell_SRCS
|
|||
test_plasmashell.cpp
|
||||
)
|
||||
add_executable(testPlasmaShell ${testPlasmaShell_SRCS})
|
||||
target_link_libraries( testPlasmaShell Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testPlasmaShell Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testPlasmaShell COMMAND testPlasmaShell)
|
||||
ecm_mark_as_test(testPlasmaShell)
|
||||
|
||||
|
@ -166,7 +166,7 @@ set( testShadow_SRCS
|
|||
test_shadow.cpp
|
||||
)
|
||||
add_executable(testShadow ${testShadow_SRCS})
|
||||
target_link_libraries( testShadow Qt::Test Qt::Gui KF6::WaylandClient kwin)
|
||||
target_link_libraries( testShadow Qt::Test Qt::Gui Plasma::KWaylandClient kwin)
|
||||
add_test(NAME kwayland-testShadow COMMAND testShadow)
|
||||
ecm_mark_as_test(testShadow)
|
||||
|
||||
|
@ -177,7 +177,7 @@ set( testTextInputV2_SRCS
|
|||
test_text_input_v2.cpp
|
||||
)
|
||||
add_executable(testTextInputV2 ${testTextInputV2_SRCS})
|
||||
target_link_libraries( testTextInputV2 Qt::Test Qt::Gui KF6::WaylandClient kwin)
|
||||
target_link_libraries( testTextInputV2 Qt::Test Qt::Gui Plasma::KWaylandClient kwin)
|
||||
add_test(NAME kwayland-testTextInputV2 COMMAND testTextInputV2)
|
||||
ecm_mark_as_test(testTextInputV2)
|
||||
|
||||
|
@ -188,7 +188,7 @@ set( testError_SRCS
|
|||
test_error.cpp
|
||||
)
|
||||
add_executable(testError ${testError_SRCS})
|
||||
target_link_libraries( testError Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testError Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testError COMMAND testError)
|
||||
ecm_mark_as_test(testError)
|
||||
|
||||
|
@ -199,7 +199,7 @@ set( testSelection_SRCS
|
|||
test_selection.cpp
|
||||
)
|
||||
add_executable(testSelection ${testSelection_SRCS})
|
||||
target_link_libraries( testSelection Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client)
|
||||
target_link_libraries( testSelection Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client)
|
||||
add_test(NAME kwayland-testSelection COMMAND testSelection)
|
||||
ecm_mark_as_test(testSelection)
|
||||
|
||||
|
@ -210,7 +210,7 @@ set( testXdgForeign_SRCS
|
|||
test_xdg_foreign.cpp
|
||||
)
|
||||
add_executable(testXdgForeign ${testXdgForeign_SRCS})
|
||||
target_link_libraries( testXdgForeign Qt::Test Qt::Gui kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries( testXdgForeign Qt::Test Qt::Gui kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testXdgForeign COMMAND testXdgForeign)
|
||||
ecm_mark_as_test(testXdgForeign)
|
||||
|
||||
|
@ -222,7 +222,7 @@ set(testXdgShell_SRCS
|
|||
${PROJECT_SOURCE_DIR}/tests/fakeoutput.cpp
|
||||
)
|
||||
add_executable(testXdgShell ${testXdgShell_SRCS})
|
||||
target_link_libraries( testXdgShell Qt::Test Qt::Gui kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries( testXdgShell Qt::Test Qt::Gui kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testXdgShell COMMAND testXdgShell)
|
||||
ecm_mark_as_test(testXdgShell)
|
||||
|
||||
|
@ -230,7 +230,7 @@ ecm_mark_as_test(testXdgShell)
|
|||
# Test Pointer Constraints
|
||||
########################################################
|
||||
add_executable(testPointerConstraintsInterface test_pointer_constraints.cpp)
|
||||
target_link_libraries( testPointerConstraintsInterface Qt::Test Qt::Gui kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries( testPointerConstraintsInterface Qt::Test Qt::Gui kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testPointerConstraintsInterface COMMAND testPointerConstraintsInterface)
|
||||
ecm_mark_as_test(testPointerConstraintsInterface)
|
||||
|
||||
|
@ -242,7 +242,7 @@ set( testFilter_SRCS
|
|||
test_wayland_filter.cpp
|
||||
)
|
||||
add_executable(testFilter ${testFilter_SRCS})
|
||||
target_link_libraries( testFilter Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Server)
|
||||
target_link_libraries( testFilter Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Server)
|
||||
add_test(NAME kwayland-testFilter COMMAND testFilter)
|
||||
ecm_mark_as_test(testFilter)
|
||||
|
||||
|
@ -253,7 +253,7 @@ set( testAppmenu_SRCS
|
|||
test_wayland_appmenu.cpp
|
||||
)
|
||||
add_executable(testAppmenu ${testAppmenu_SRCS})
|
||||
target_link_libraries( testAppmenu Qt::Test Qt::Gui KF6::WaylandClient kwin)
|
||||
target_link_libraries( testAppmenu Qt::Test Qt::Gui Plasma::KWaylandClient kwin)
|
||||
add_test(NAME kwayland-testAppmenu COMMAND testAppmenu)
|
||||
ecm_mark_as_test(testAppmenu)
|
||||
|
||||
|
@ -266,7 +266,7 @@ set( testServerSideDecorationPalette_SRCS
|
|||
add_executable(testServerSideDecorationPalette ${testServerSideDecorationPalette_SRCS})
|
||||
qt6_generate_wayland_protocol_client_sources(testServerSideDecorationPalette FILES
|
||||
${PLASMA_WAYLAND_PROTOCOLS_DIR}/server-decoration-palette.xml)
|
||||
target_link_libraries( testServerSideDecorationPalette Qt::Test Qt::Gui KF6::WaylandClient Wayland::Client kwin)
|
||||
target_link_libraries( testServerSideDecorationPalette Qt::Test Qt::Gui Plasma::KWaylandClient Wayland::Client kwin)
|
||||
add_test(NAME kwayland-testServerSideDecorationPalette COMMAND testServerSideDecorationPalette)
|
||||
ecm_mark_as_test(testServerSideDecorationPalette)
|
||||
|
||||
|
@ -277,7 +277,7 @@ set( testPlasmaVirtualDesktop_SRCS
|
|||
test_plasma_virtual_desktop.cpp
|
||||
)
|
||||
add_executable(testPlasmaVirtualDesktop ${testPlasmaVirtualDesktop_SRCS})
|
||||
target_link_libraries( testPlasmaVirtualDesktop Qt::Test Qt::Gui KF6::WaylandClient kwin)
|
||||
target_link_libraries( testPlasmaVirtualDesktop Qt::Test Qt::Gui Plasma::KWaylandClient kwin)
|
||||
add_test(NAME kwayland-testPlasmaVirtualDesktop COMMAND testPlasmaVirtualDesktop)
|
||||
ecm_mark_as_test(testPlasmaVirtualDesktop)
|
||||
|
||||
|
@ -288,7 +288,7 @@ set( testPlasmaActivities_SRCS
|
|||
test_plasma_activities.cpp
|
||||
)
|
||||
add_executable(testPlasmaActivities ${testPlasmaActivities_SRCS})
|
||||
target_link_libraries( testPlasmaActivities Qt::Test Qt::Gui KF6::WaylandClient kwin)
|
||||
target_link_libraries( testPlasmaActivities Qt::Test Qt::Gui Plasma::KWaylandClient kwin)
|
||||
add_test(NAME kwayland-testPlasmaActivities COMMAND testPlasmaActivities)
|
||||
ecm_mark_as_test(testPlasmaActivities)
|
||||
|
||||
|
@ -300,7 +300,7 @@ set( testXdgOutput_SRCS
|
|||
${PROJECT_SOURCE_DIR}/tests/fakeoutput.cpp
|
||||
)
|
||||
add_executable(testXdgOutput ${testXdgOutput_SRCS})
|
||||
target_link_libraries( testXdgOutput Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client Wayland::Server)
|
||||
target_link_libraries( testXdgOutput Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client Wayland::Server)
|
||||
add_test(NAME kwayland-testXdgOutput COMMAND testXdgOutput)
|
||||
ecm_mark_as_test(testXdgOutput)
|
||||
|
||||
|
@ -311,7 +311,7 @@ set( testXdgdecoration_SRCS
|
|||
test_xdg_decoration.cpp
|
||||
)
|
||||
add_executable(testXdgDecoration ${testXdgdecoration_SRCS})
|
||||
target_link_libraries( testXdgDecoration Qt::Test Qt::Gui KF6::WaylandClient kwin Wayland::Client Wayland::Server)
|
||||
target_link_libraries( testXdgDecoration Qt::Test Qt::Gui Plasma::KWaylandClient kwin Wayland::Client Wayland::Server)
|
||||
add_test(NAME kwayland-testXdgDecoration COMMAND testXdgDecoration)
|
||||
ecm_mark_as_test(testXdgDecoration)
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ add_executable(testTabletInterface)
|
|||
qt6_generate_wayland_protocol_client_sources(testTabletInterface FILES
|
||||
${WaylandProtocols_DATADIR}/unstable/tablet/tablet-unstable-v2.xml)
|
||||
target_sources(testTabletInterface PRIVATE test_tablet_interface.cpp ${TABLET_SRCS})
|
||||
target_link_libraries( testTabletInterface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries( testTabletInterface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testTabletInterface COMMAND testTabletInterface)
|
||||
ecm_mark_as_test(testTabletInterface)
|
||||
|
||||
|
@ -46,7 +46,7 @@ add_executable(testDataControlInterface test_datacontrol_interface.cpp ${DATACON
|
|||
qt6_generate_wayland_protocol_client_sources(testDataControlInterface FILES
|
||||
${PROJECT_SOURCE_DIR}/src/wayland/protocols/wlr-data-control-unstable-v1.xml)
|
||||
target_sources(testDataControlInterface PRIVATE test_datacontrol_interface.cpp ${DATACONTROL_SRCS})
|
||||
target_link_libraries( testDataControlInterface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries( testDataControlInterface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testDataControlInterface COMMAND testDataControlInterface)
|
||||
ecm_mark_as_test(testDataControlInterface)
|
||||
|
||||
|
@ -57,7 +57,7 @@ add_executable(testKeyboardShortcutsInhibitorInterface)
|
|||
qt6_generate_wayland_protocol_client_sources(testKeyboardShortcutsInhibitorInterface FILES
|
||||
${WaylandProtocols_DATADIR}/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml)
|
||||
target_sources(testKeyboardShortcutsInhibitorInterface PRIVATE test_keyboard_shortcuts_inhibitor_interface.cpp ${KEYBOARD_SHORTCUTS_INHIBITOR_SRCS})
|
||||
target_link_libraries(testKeyboardShortcutsInhibitorInterface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries(testKeyboardShortcutsInhibitorInterface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testKeyboardShortcutsInhibitorInterface COMMAND testKeyboardShortcutsInhibitorInterface)
|
||||
ecm_mark_as_test(testKeyboardShortcutsInhibitorInterface)
|
||||
|
||||
|
@ -68,7 +68,7 @@ add_executable(testViewporterInterface)
|
|||
qt6_generate_wayland_protocol_client_sources(testViewporterInterface FILES
|
||||
${WaylandProtocols_DATADIR}/stable/viewporter/viewporter.xml)
|
||||
target_sources(testViewporterInterface PRIVATE test_viewporter_interface.cpp ${VIEWPORTER_SRCS})
|
||||
target_link_libraries(testViewporterInterface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries(testViewporterInterface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testViewporterInterface COMMAND testViewporterInterface)
|
||||
ecm_mark_as_test(testViewporterInterface)
|
||||
|
||||
|
@ -79,7 +79,7 @@ add_executable(testScreencastV1Interface)
|
|||
qt6_generate_wayland_protocol_client_sources(testScreencastV1Interface FILES
|
||||
${PLASMA_WAYLAND_PROTOCOLS_DIR}/zkde-screencast-unstable-v1.xml)
|
||||
target_sources(testScreencastV1Interface PRIVATE test_screencast.cpp ${SCREENCAST_SRCS})
|
||||
target_link_libraries(testScreencastV1Interface Qt::Test kwin Wayland::Client KF6::WaylandClient)
|
||||
target_link_libraries(testScreencastV1Interface Qt::Test kwin Wayland::Client Plasma::KWaylandClient)
|
||||
add_test(NAME kwayland-testScreencastV1Interface COMMAND testScreencastV1Interface)
|
||||
ecm_mark_as_test(testScreencastV1Interface)
|
||||
|
||||
|
@ -97,7 +97,7 @@ target_sources(testInputMethodInterface PRIVATE
|
|||
${PROJECT_SOURCE_DIR}/tests/fakeoutput.cpp
|
||||
${INPUTMETHOD_SRCS}
|
||||
)
|
||||
target_link_libraries(testInputMethodInterface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries(testInputMethodInterface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testInputMethodInterface COMMAND testInputMethodInterface)
|
||||
ecm_mark_as_test(testInputMethodInterface)
|
||||
|
||||
|
@ -110,7 +110,7 @@ qt6_generate_wayland_protocol_client_sources(testLayerShellV1Interface FILES
|
|||
${WaylandProtocols_DATADIR}/stable/xdg-shell/xdg-shell.xml
|
||||
)
|
||||
target_sources(testLayerShellV1Interface PRIVATE test_layershellv1_interface.cpp ${LAYERSHELLV1_SRCS})
|
||||
target_link_libraries(testLayerShellV1Interface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries(testLayerShellV1Interface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testLayerShellV1Interface COMMAND testLayerShellV1Interface)
|
||||
ecm_mark_as_test(testLayerShellV1Interface)
|
||||
|
||||
|
@ -122,7 +122,7 @@ add_executable(testTextInputV3Interface)
|
|||
qt6_generate_wayland_protocol_client_sources(testTextInputV3Interface FILES
|
||||
${WaylandProtocols_DATADIR}/unstable/text-input/text-input-unstable-v3.xml)
|
||||
target_sources(testTextInputV3Interface PRIVATE test_textinputv3_interface.cpp ${TEXTINPUTV3_SRCS})
|
||||
target_link_libraries(testTextInputV3Interface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries(testTextInputV3Interface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testTextInputV3Interface COMMAND testTextInputV3Interface)
|
||||
ecm_mark_as_test(testTextInputV3Interface)
|
||||
|
||||
|
@ -133,6 +133,6 @@ add_executable(testTextInputV1Interface)
|
|||
qt6_generate_wayland_protocol_client_sources(testTextInputV1Interface FILES
|
||||
${WaylandProtocols_DATADIR}/unstable/text-input/text-input-unstable-v1.xml)
|
||||
target_sources(testTextInputV1Interface PRIVATE test_textinputv1_interface.cpp ${TEXTINPUTV1_SRCS})
|
||||
target_link_libraries(testTextInputV1Interface Qt::Test kwin KF6::WaylandClient Wayland::Client)
|
||||
target_link_libraries(testTextInputV1Interface Qt::Test kwin Plasma::KWaylandClient Wayland::Client)
|
||||
add_test(NAME kwayland-testTextInputV1Interface COMMAND testTextInputV1Interface)
|
||||
ecm_mark_as_test(testTextInputV1Interface)
|
||||
|
|
|
@ -7,4 +7,4 @@ target_sources(kwin PRIVATE
|
|||
wayland_qpainter_backend.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(kwin PRIVATE KF6::WaylandClient Wayland::Client gbm::gbm)
|
||||
target_link_libraries(kwin PRIVATE Plasma::KWaylandClient Wayland::Client gbm::gbm)
|
||||
|
|
|
@ -5,18 +5,18 @@ target_link_libraries(normalhintsbasesizetest XCB::XCB XCB::ICCCM KF6::WindowSys
|
|||
# next target
|
||||
set(screenedgeshowtest_SRCS screenedgeshowtest.cpp)
|
||||
add_executable(screenedgeshowtest ${screenedgeshowtest_SRCS})
|
||||
target_link_libraries(screenedgeshowtest Qt::GuiPrivate Qt::Widgets KF6::ConfigCore KF6::WindowSystem KF6::WaylandClient ${XCB_XCB_LIBRARY})
|
||||
target_link_libraries(screenedgeshowtest Qt::GuiPrivate Qt::Widgets KF6::ConfigCore KF6::WindowSystem Plasma::KWaylandClient ${XCB_XCB_LIBRARY})
|
||||
|
||||
add_executable(x11shadowreader x11shadowreader.cpp)
|
||||
target_link_libraries(x11shadowreader XCB::XCB Qt::GuiPrivate Qt::Widgets KF6::ConfigCore KF6::WindowSystem)
|
||||
|
||||
add_executable(pointerconstraints pointerconstraintstest.cpp)
|
||||
add_definitions(-DDIR="${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
target_link_libraries(pointerconstraints XCB::XCB Qt::Gui Qt::Quick KF6::WaylandClient)
|
||||
target_link_libraries(pointerconstraints XCB::XCB Qt::Gui Qt::Quick Plasma::KWaylandClient)
|
||||
|
||||
add_executable(pointergestures pointergesturestest.cpp)
|
||||
add_definitions(-DDIR="${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
target_link_libraries(pointergestures Qt::Gui Qt::Quick KF6::WaylandClient)
|
||||
target_link_libraries(pointergestures Qt::Gui Qt::Quick Plasma::KWaylandClient)
|
||||
|
||||
add_executable(cursorhotspottest cursorhotspottest.cpp)
|
||||
target_link_libraries(cursorhotspottest Qt::Widgets)
|
||||
|
@ -44,33 +44,33 @@ if (TARGET Qt::Widgets)
|
|||
endif()
|
||||
|
||||
add_executable(copyClient copyclient.cpp)
|
||||
target_link_libraries(copyClient KF6::WaylandClient)
|
||||
target_link_libraries(copyClient Plasma::KWaylandClient)
|
||||
|
||||
add_executable(pasteClient pasteclient.cpp)
|
||||
target_link_libraries(pasteClient Qt::Core KF6::WaylandClient)
|
||||
target_link_libraries(pasteClient Qt::Core Plasma::KWaylandClient)
|
||||
|
||||
add_executable(touchClientTest touchclienttest.cpp)
|
||||
target_link_libraries(touchClientTest KF6::WaylandClient)
|
||||
target_link_libraries(touchClientTest Plasma::KWaylandClient)
|
||||
|
||||
add_executable(panelTest paneltest.cpp)
|
||||
target_link_libraries(panelTest KF6::WaylandClient)
|
||||
target_link_libraries(panelTest Plasma::KWaylandClient)
|
||||
|
||||
add_executable(subsurface-test subsurfacetest.cpp)
|
||||
target_link_libraries(subsurface-test Qt::Core Qt::Gui KF6::WaylandClient)
|
||||
target_link_libraries(subsurface-test Qt::Core Qt::Gui Plasma::KWaylandClient)
|
||||
|
||||
add_executable(shadowTest shadowtest.cpp)
|
||||
target_link_libraries(shadowTest KF6::WaylandClient)
|
||||
target_link_libraries(shadowTest Plasma::KWaylandClient)
|
||||
|
||||
if (TARGET Qt::Widgets)
|
||||
add_executable(dpmsTest dpmstest.cpp)
|
||||
target_link_libraries(dpmsTest KF6::WaylandClient Qt::Widgets)
|
||||
target_link_libraries(dpmsTest Plasma::KWaylandClient Qt::Widgets)
|
||||
endif()
|
||||
|
||||
add_executable(plasmasurface-test plasmasurfacetest.cpp)
|
||||
target_link_libraries(plasmasurface-test Qt::Gui KF6::WaylandClient)
|
||||
target_link_libraries(plasmasurface-test Qt::Gui Plasma::KWaylandClient)
|
||||
|
||||
add_executable(xdgforeign-test xdgforeigntest.cpp)
|
||||
target_link_libraries(xdgforeign-test Qt::Gui KF6::WaylandClient)
|
||||
target_link_libraries(xdgforeign-test Qt::Gui Plasma::KWaylandClient)
|
||||
|
||||
add_executable(xdg-test xdgtest.cpp)
|
||||
target_link_libraries(xdg-test Qt::Gui KF6::WaylandClient)
|
||||
target_link_libraries(xdg-test Qt::Gui Plasma::KWaylandClient)
|
||||
|
|
Loading…
Reference in a new issue