2ad7b38392
Can be used to keep track of the clipboard by setting and fetching information from it.
29 lines
679 B
CMake
29 lines
679 B
CMake
project(qtextracomponents)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
set(qtextracomponents_SRCS
|
|
qtextracomponentsplugin.cpp
|
|
qpixmapitem.cpp
|
|
qimageitem.cpp
|
|
qiconitem.cpp
|
|
mouseeventlistener.cpp
|
|
columnproxymodel.cpp
|
|
clipboard.cpp
|
|
)
|
|
|
|
add_library(qtextracomponentsplugin SHARED ${qtextracomponents_SRCS})
|
|
|
|
target_link_libraries(qtextracomponentsplugin
|
|
Qt5::Core
|
|
Qt5::Quick
|
|
Qt5::Qml
|
|
Qt5::Gui
|
|
KF5::Declarative
|
|
KF5::IconThemes
|
|
KF5::Plasma)
|
|
|
|
install(TARGETS qtextracomponentsplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/qtextracomponents)
|
|
|
|
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/qtextracomponents)
|