kde-workspace/qguiplatformplugin_kde/CMakeLists.txt
Ivailo Monev 39e320492d qguiplatformplugin_kde: apply the cursor theme
for when not even X11 Xfixes extension can do it (as was done by
KGlobalSettings, however the difference being no check is done if it is
full Katana session - it is simply assumed it is the case when the platform
plugin is loaded)

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-08-22 07:20:38 +03:00

15 lines
353 B
CMake

project(qguiplatformplugin_kde)
set(kde_SOURCES qguiplatformplugin_kde.cpp)
kde4_add_plugin(kde ${kde_SOURCES})
target_link_libraries(kde KDE4::kio ${QT_QTGUI_LIBRARY})
if (X11_Xcursor_FOUND)
target_link_libraries(kde ${X11_Xcursor_LIB})
endif()
install(
TARGETS kde LIBRARY
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}/plugins/gui_platform
)