2015-01-15 17:07:43 +00:00
|
|
|
project(plasma-notes)
|
|
|
|
|
|
|
|
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
|
|
|
|
include_directories(
|
|
|
|
${CMAKE_SOURCE_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
${KDE4_INCLUDES}
|
|
|
|
)
|
|
|
|
|
2015-09-02 02:13:50 +03:00
|
|
|
set(notes_SRCS notes.cpp textedit.cpp config.ui)
|
2015-01-15 17:07:43 +00:00
|
|
|
|
|
|
|
kde4_add_plugin(plasma_applet_notes ${notes_SRCS})
|
|
|
|
target_link_libraries(plasma_applet_notes
|
|
|
|
${KDE4_PLASMA_LIBS} ${KDE4_KIO_LIBS}
|
|
|
|
)
|
|
|
|
install(
|
|
|
|
TARGETS plasma_applet_notes
|
2020-02-08 18:39:41 +00:00
|
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
2015-01-15 17:07:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES plasma-notes-default.desktop
|
2020-02-08 18:39:41 +00:00
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
2015-01-15 17:07:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES notes.svgz
|
2020-02-08 18:39:41 +00:00
|
|
|
DESTINATION ${KDE4_DATA_INSTALL_DIR}/desktoptheme/default/widgets/)
|