mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
143 lines
3.7 KiB
CMake
143 lines
3.7 KiB
CMake
project(kjots)
|
|
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS}" )
|
|
|
|
add_definitions( -DQT_NO_CAST_FROM_ASCII )
|
|
add_definitions( -DQT_NO_CAST_TO_ASCII )
|
|
|
|
|
|
include_directories(
|
|
${KDE4_INCLUDES}
|
|
${KDEPIMLIBS_INCLUDE_DIRS}
|
|
${Boost_INCLUDE_DIRS}
|
|
${Grantlee_INCLUDE_DIRS}
|
|
${CMAKE_SOURCE_DIR}/noteshared
|
|
)
|
|
|
|
set(kjotsLibs ${KDE4_KIO_LIBS} kdepim)
|
|
|
|
add_subdirectory( icons )
|
|
add_subdirectory( plasmoid )
|
|
|
|
#########################################################################
|
|
# Code common to the kjots application and the kontact plugin
|
|
# Don't make it a static library, this code needs to be compiled
|
|
# with -fPIC for the part and without -fPIC for the executable
|
|
#########################################################################
|
|
|
|
set(kjots_config_SRCS kjotsconfigdlg.cpp)
|
|
|
|
kde4_add_kcfg_files(kjots_config_SRCS KJotsSettings.kcfgc )
|
|
|
|
set (kjots_common_SRCS
|
|
aboutdata.cpp
|
|
kjotslockjob.cpp
|
|
kjotsedit.cpp
|
|
kjotstreeview.cpp
|
|
kjotsbookmarks.cpp
|
|
kjotsreplacenextdialog.cpp
|
|
kjotsmodel.cpp
|
|
kjotssortproxymodel.cpp
|
|
kjotswidget.cpp
|
|
kjotsbrowser.cpp
|
|
kjotslinkdialog.cpp
|
|
localresourcecreator.cpp
|
|
kjotsbookshelfentryvalidator.cpp
|
|
knowitimporter.cpp ${kjots_config_SRCS}
|
|
)
|
|
|
|
#########################################################################
|
|
# D-Bus interface
|
|
#########################################################################
|
|
|
|
qt4_generate_dbus_interface( kjotswidget.h org.kde.KJotsWidget.xml OPTIONS -m )
|
|
qt4_add_dbus_interfaces(kjots_common_SRCS
|
|
${CMAKE_CURRENT_BINARY_DIR}/org.kde.KJotsWidget.xml)
|
|
|
|
|
|
#########################################################################
|
|
# Main Application SECTION
|
|
#########################################################################
|
|
|
|
set(kjots_SRCS
|
|
main.cpp
|
|
KJotsMain.cpp
|
|
${kjots_common_SRCS}
|
|
)
|
|
|
|
add_executable(kjots ${kjots_SRCS})
|
|
|
|
target_link_libraries(kjots
|
|
${kjotsLibs}
|
|
${KDE4_KCMUTILS_LIBS}
|
|
${KDEPIMLIBS_AKONADI_LIBS}
|
|
${KDEPIMLIBS_KMIME_LIBS}
|
|
${KDEPIMLIBS_AKONADI_KMIME_LIBS}
|
|
${Grantlee_CORE_LIBRARIES}
|
|
${Grantlee_GUI_LIBRARIES}
|
|
${KDEPIMLIBS_KPIMTEXTEDIT_LIBS}
|
|
${KDEPIMLIBS_KONTACTINTERFACE_LIBS}
|
|
${KDE4_KPRINTUTILS_LIBS}
|
|
akonadi_next
|
|
noteshared
|
|
)
|
|
|
|
|
|
install(TARGETS kjots ${INSTALL_TARGETS_DEFAULT_ARGS} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( PROGRAMS Kjots.desktop DESTINATION ${XDG_APPS_INSTALL_DIR})
|
|
install( FILES kjots.kcfg DESTINATION ${KCFG_INSTALL_DIR})
|
|
install( FILES kjotsui.rc DESTINATION ${DATA_INSTALL_DIR}/kjots)
|
|
|
|
install(DIRECTORY themes DESTINATION ${DATA_INSTALL_DIR}/kjots PATTERN *.svn EXCLUDE )
|
|
|
|
|
|
|
|
|
|
set(kjotspart_PART_SRCS
|
|
kjotspart.cpp
|
|
${kjots_common_SRCS}
|
|
)
|
|
|
|
kde4_add_plugin(kjotspart ${kjotspart_PART_SRCS}
|
|
)
|
|
|
|
|
|
target_link_libraries(kjotspart
|
|
${KDE4_KCMUTILS_LIBS}
|
|
${KDE4_KPARTS_LIBS}
|
|
kdepim
|
|
${KDEPIMLIBS_KMIME_LIBS}
|
|
${KDEPIMLIBS_AKONADI_LIBS}
|
|
${KDEPIMLIBS_AKONADI_KMIME_LIBS}
|
|
${KDEPIMLIBS_KMIME_LIBS}
|
|
${Grantlee_CORE_LIBRARIES}
|
|
${Grantlee_GUI_LIBRARIES}
|
|
${KDEPIMLIBS_KPIMTEXTEDIT_LIBS}
|
|
${KDE4_KPRINTUTILS_LIBS}
|
|
akonadi_next
|
|
noteshared
|
|
)
|
|
|
|
install( FILES kjotspart.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
install( FILES kjotspartui.rc DESTINATION ${DATA_INSTALL_DIR}/kjots)
|
|
|
|
install(TARGETS kjotspart DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
###########################################################################
|
|
set(kcm_kjots_PART_SRCS kcm_kjots.cpp ${kjots_config_SRCS} )
|
|
|
|
kde4_add_plugin(kcm_kjots ${kcm_kjots_PART_SRCS})
|
|
|
|
target_link_libraries(kcm_kjots ${KDE4_KDEUI_LIBS} ${KDE4_KCMUTILS_LIBS})
|
|
|
|
install(TARGETS kcm_kjots DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
|
|
install(FILES
|
|
kjots_config_misc.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR})
|