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
38 lines
1.1 KiB
CMake
38 lines
1.1 KiB
CMake
include_directories (${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
set (krfb_framebuffer_xcb_SRCS
|
|
xcb_framebufferplugin.cpp
|
|
xcb_framebuffer.cpp
|
|
)
|
|
|
|
ecm_qt_declare_logging_category(krfb_framebuffer_xcb_SRCS
|
|
HEADER krfb_fb_xcb_debug.h
|
|
IDENTIFIER KRFB_FB_XCB
|
|
CATEGORY_NAME krfb.framebuffer.xcb
|
|
DESCRIPTION "KRFB XCB framebuffer plugin"
|
|
EXPORT KRFB
|
|
)
|
|
|
|
add_library(krfb_framebuffer_xcb MODULE ${krfb_framebuffer_xcb_SRCS})
|
|
|
|
target_link_libraries (krfb_framebuffer_xcb
|
|
Qt5::Core
|
|
Qt5::Gui
|
|
XCB::XCB
|
|
XCB::RENDER
|
|
XCB::SHAPE
|
|
XCB::XFIXES
|
|
XCB::DAMAGE
|
|
XCB::SHM
|
|
XCB::IMAGE
|
|
KF5::CoreAddons
|
|
krfbprivate
|
|
)
|
|
|
|
set_target_properties(krfb_framebuffer_xcb PROPERTIES OUTPUT_NAME xcb)
|
|
install (TARGETS krfb_framebuffer_xcb
|
|
DESTINATION ${KDE_INSTALL_PLUGINDIR}/krfb/framebuffer
|
|
)
|