mirror of
https://github.com/KDE/krfb
synced 2026-07-01 07:41:17 -07:00
We ignore the name/description and only display the id in the ui. To make sure the is are the same, the OUTPUT_NAME cmake target property is set. Otherwise, we would need a json file with the KPlugin object and then the id in it, which is unnecessary work for sth. that can be done in a single line. Having the file base name and id differ is also discouraged, see https://phabricator.kde.org/T14499
34 lines
846 B
CMake
34 lines
846 B
CMake
include_directories (${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
set (krfb_framebuffer_qt_SRCS
|
|
qtframebuffer.cpp
|
|
qtframebufferplugin.cpp
|
|
)
|
|
|
|
ecm_qt_declare_logging_category(krfb_framebuffer_qt_SRCS
|
|
HEADER krfb_fb_qt_debug.h
|
|
IDENTIFIER KRFB_FB_QT
|
|
CATEGORY_NAME krfb.framebuffer.qt
|
|
DESCRIPTION "KRFB Qt framebuffer plugin"
|
|
EXPORT KRFB
|
|
)
|
|
|
|
add_library(krfb_framebuffer_qt
|
|
MODULE
|
|
${krfb_framebuffer_qt_SRCS}
|
|
)
|
|
|
|
target_link_libraries (krfb_framebuffer_qt
|
|
Qt5::Core
|
|
Qt5::Gui
|
|
KF5::CoreAddons
|
|
krfbprivate
|
|
)
|
|
|
|
set_target_properties(krfb_framebuffer_qt PROPERTIES OUTPUT_NAME qt)
|
|
install (TARGETS krfb_framebuffer_qt
|
|
DESTINATION ${KDE_INSTALL_PLUGINDIR}/krfb/framebuffer
|
|
)
|