mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 19:32:52 +00:00
26 lines
502 B
CMake
26 lines
502 B
CMake
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_joystick_PART_SRCS
|
|
joystick.cpp
|
|
joywidget.cpp
|
|
poswidget.cpp
|
|
joydevice.cpp
|
|
caldialog.cpp )
|
|
|
|
|
|
kde4_add_plugin(kcm_joystick ${kcm_joystick_PART_SRCS})
|
|
|
|
|
|
target_link_libraries(kcm_joystick ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} ${QT_QTGUI_LIBRARY})
|
|
|
|
install(TARGETS kcm_joystick DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES joystick.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
#
|