dbf2218338
Less deprecated CMake usage.
25 lines
595 B
CMake
25 lines
595 B
CMake
|
|
########### next target ###############
|
|
|
|
set(kcm_kwindesktop_PART_SRCS main.cpp desktopnameswidget.cpp)
|
|
qt5_wrap_ui(kcm_kwindesktop_PART_SRCS main.ui)
|
|
|
|
add_library(kcm_kwindesktop MODULE ${kcm_kwindesktop_PART_SRCS})
|
|
|
|
target_link_libraries(kcm_kwindesktop
|
|
Qt5::X11Extras
|
|
KF5::KCMUtils
|
|
KF5::Completion
|
|
KF5::GlobalAccel
|
|
KF5::I18n
|
|
KF5::WindowSystem
|
|
KF5::XmlGui
|
|
${X11_LIBRARIES}
|
|
)
|
|
|
|
install(TARGETS kcm_kwindesktop DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
install( FILES desktop.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|