2011-02-10 18:41:47 +01:00
|
|
|
project(qtextracomponents)
|
|
|
|
|
2013-10-05 06:00:21 +02:00
|
|
|
add_subdirectory(tests)
|
2012-09-04 01:18:55 +02:00
|
|
|
|
2011-02-10 18:41:47 +01:00
|
|
|
set(qtextracomponents_SRCS
|
|
|
|
qtextracomponentsplugin.cpp
|
2013-02-15 00:16:21 +01:00
|
|
|
qpixmapitem.cpp
|
2013-02-15 00:20:01 +01:00
|
|
|
qimageitem.cpp
|
2013-02-14 06:08:29 +01:00
|
|
|
qiconitem.cpp
|
|
|
|
mouseeventlistener.cpp
|
2013-02-14 02:07:37 +01:00
|
|
|
columnproxymodel.cpp
|
2011-02-10 18:41:47 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
add_library(qtextracomponentsplugin SHARED ${qtextracomponents_SRCS})
|
|
|
|
|
2013-02-12 04:34:49 +01:00
|
|
|
target_link_libraries(qtextracomponentsplugin
|
|
|
|
${QT_QTCORE_LIBRARY}
|
|
|
|
${Qt5Quick_LIBRARIES}
|
|
|
|
${Qt5Qml_LIBRARIES}
|
|
|
|
${QT_QTGUI_LIBRARY}
|
2013-10-04 18:40:47 +02:00
|
|
|
${KDeclarative_LIBRARIES}
|
2013-08-20 07:47:09 +02:00
|
|
|
KF5::KIconThemes
|
2013-10-16 00:47:47 +02:00
|
|
|
Plasma)
|
2013-02-12 04:34:49 +01:00
|
|
|
|
|
|
|
install(TARGETS qtextracomponentsplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/qtextracomponents)
|
2011-02-10 18:41:47 +01:00
|
|
|
|
2013-02-12 04:34:49 +01:00
|
|
|
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/qtextracomponents)
|