mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
16 lines
289 B
CMake
16 lines
289 B
CMake
project(qguiplatformplugin_kde)
|
|
|
|
set(kde_SOURCES qguiplatformplugin_kde.cpp)
|
|
|
|
kde4_add_plugin(kde ${kde_SOURCES})
|
|
|
|
target_link_libraries(kde ${KDE4_KIO_LIBS} ${QT_QTGUI_LIBRARY})
|
|
|
|
install(
|
|
TARGETS kde LIBRARY
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}/kde4/plugins/gui_platform
|
|
)
|
|
|
|
|
|
|
|
|