mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
23 lines
440 B
CMake
23 lines
440 B
CMake
kde4_add_plugin(kcm_emoticons emoticonslist.cpp)
|
|
|
|
target_link_libraries(kcm_emoticons
|
|
${KDE4_KDEUI_LIBS}
|
|
${KDE4_KPARTS_LIBS}
|
|
${KDE4_KEMOTICONS_LIBRARY}
|
|
)
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
TARGETS kcm_emoticons
|
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES emoticons.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
|
)
|
|
install(
|
|
FILES emoticons.knsrc
|
|
DESTINATION ${CONFIG_INSTALL_DIR}
|
|
)
|