mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
19 lines
372 B
CMake
19 lines
372 B
CMake
kde4_add_plugin(kcm_emoticons emoticonslist.cpp)
|
|
|
|
target_link_libraries(kcm_emoticons
|
|
${KDE4_KDEUI_LIBS}
|
|
${KDE4_KPARTS_LIBS}
|
|
${KDE4_KEMOTICONS_LIBS}
|
|
)
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
TARGETS kcm_emoticons
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES emoticons.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|