Warning, /plasma/plasma-desktop/kcms/keyboard/tastenbrett/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 set(CMAKE_AUTORCC ON)
0002 
0003 pkg_check_modules(XKBCommon REQUIRED IMPORTED_TARGET xkbcommon)
0004 
0005 add_executable(tastenbrett
0006     application.cpp
0007     doodad.cpp
0008     geometry.cpp
0009     key.cpp
0010     main.cpp
0011     outline.cpp
0012     qml.qrc
0013     row.cpp
0014     section.cpp
0015     shape.cpp
0016     xkbobject.cpp
0017 )
0018 
0019 target_compile_definitions(tastenbrett
0020     PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
0021 
0022 target_link_libraries(tastenbrett
0023     PRIVATE
0024         Qt::Core
0025         Qt::Quick
0026         Qt::Gui
0027         KF6::CoreAddons
0028         KF6::I18n
0029         XCB::XCB
0030         PkgConfig::XKBCommon
0031         X11::xkbfile
0032         X11::X11
0033 )
0034 target_link_libraries(tastenbrett PRIVATE Qt::GuiPrivate)
0035 
0036 install(TARGETS tastenbrett DESTINATION ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})