mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
26 lines
490 B
CMake
26 lines
490 B
CMake
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_smartcard_PART_SRCS smartcard.cpp )
|
|
|
|
|
|
kde4_add_ui_files(kcm_smartcard_PART_SRCS smartcardbase.ui nosmartcardbase.ui )
|
|
|
|
|
|
kde4_add_plugin(kcm_smartcard ${kcm_smartcard_PART_SRCS})
|
|
|
|
|
|
target_link_libraries(kcm_smartcard ksmartcard ${KDE4_KIO_LIBS} )
|
|
|
|
install(TARGETS kcm_smartcard DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES smartcard.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
|
|
|
|
|