2fdffd5cfd
Before this it was not possible to change the pause condition (was a TODO).
47 lines
1.3 KiB
CMake
47 lines
1.3 KiB
CMake
find_package(KDE4 REQUIRED)
|
|
find_package(QJSON REQUIRED)
|
|
find_package(QCA2 REQUIRED)
|
|
|
|
include(KDE4Defaults)
|
|
|
|
include_directories(
|
|
${QJSON_INCLUDE_DIR}
|
|
${QCA2_INCLUDE_DIR}
|
|
${KDE4_INCLUDES}
|
|
${CMAKE_SOURCE_DIR}
|
|
)
|
|
|
|
set(kdeconnect_pausemusic_SRCS
|
|
pausemusicplugin.cpp
|
|
../kdeconnectplugin.cpp
|
|
../../kdebugnamespace.cpp
|
|
)
|
|
|
|
kde4_add_plugin(kdeconnect_pausemusic ${kdeconnect_pausemusic_SRCS})
|
|
|
|
target_link_libraries(kdeconnect_pausemusic
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KDEUI_LIBS}
|
|
${QT_QTNETWORK_LIBRARY}
|
|
${QJSON_LIBRARIES}
|
|
${QCA2_LIBRARIES}
|
|
)
|
|
|
|
install(TARGETS kdeconnect_pausemusic DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
install(FILES kdeconnect_pausemusic.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
|
|
#######################################
|
|
# Config
|
|
|
|
set( kdeconnect_pausemusic_config_SRCS pausemusic_config.cpp )
|
|
kde4_add_ui_files( kdeconnect_pausemusic_config_SRCS pausemusic_config.ui )
|
|
|
|
kde4_add_plugin( kdeconnect_pausemusic_config ${kdeconnect_pausemusic_config_SRCS} )
|
|
target_link_libraries( kdeconnect_pausemusic_config
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KDEUI_LIBS}
|
|
)
|
|
|
|
install( TARGETS kdeconnect_pausemusic_config DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
install( FILES kdeconnect_pausemusic_config.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|