5c9d3a9d42
Solves the need of compiling device.cpp against all plugins. Also networkpackage and others don't need to either. REVIEW: 118742
34 lines
1 KiB
CMake
34 lines
1 KiB
CMake
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} )
|