ed1e24d231
This is far less code and allows for an easier enforcing of standards, for example the name of the log identifiers which were adjusted in a few cases. Also clean up unused includes when noticed.
32 lines
865 B
CMake
32 lines
865 B
CMake
kdeconnect_add_plugin(kdeconnect_pausemusic)
|
|
|
|
if(WIN32)
|
|
target_sources(kdeconnect_pausemusic PRIVATE pausemusicplugin-win.cpp)
|
|
else()
|
|
target_sources(kdeconnect_pausemusic PRIVATE pausemusicplugin.cpp)
|
|
endif()
|
|
|
|
target_link_libraries(kdeconnect_pausemusic
|
|
kdeconnectcore
|
|
kdeconnectinterfaces
|
|
Qt::Core
|
|
Qt::DBus
|
|
)
|
|
if (WIN32)
|
|
target_link_libraries(kdeconnect_pausemusic windowsapp)
|
|
else()
|
|
target_link_libraries(kdeconnect_pausemusic KF${QT_MAJOR_VERSION}::PulseAudioQt)
|
|
endif()
|
|
|
|
#######################################
|
|
# Config
|
|
|
|
kdeconnect_add_kcm(kdeconnect_pausemusic_config SOURCES pausemusic_config.cpp)
|
|
|
|
ki18n_wrap_ui(kdeconnect_pausemusic_config pausemusic_config.ui)
|
|
target_link_libraries(kdeconnect_pausemusic_config
|
|
kdeconnectcore
|
|
kdeconnectpluginkcm
|
|
KF${QT_MAJOR_VERSION}::I18n
|
|
KF${QT_MAJOR_VERSION}::KCMUtils
|
|
)
|