mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
29 lines
1 KiB
CMake
29 lines
1 KiB
CMake
set(plasmaweather_LIB_SRCS
|
|
weatherpopupapplet.cpp
|
|
weathervalidator.cpp
|
|
weatherlocation.cpp
|
|
weatherconfig.cpp
|
|
weatheri18ncatalog.cpp
|
|
)
|
|
|
|
set(plasmaweather_HEADERS
|
|
weatherpopupapplet.h
|
|
weathervalidator.h
|
|
weatherconfig.h
|
|
weatherlocation.h
|
|
plasmaweather_export.h
|
|
)
|
|
|
|
kde4_add_ui_files(plasmaweather_LIB_SRCS
|
|
weatherconfig.ui
|
|
)
|
|
|
|
kde4_add_library(plasmaweather SHARED ${plasmaweather_LIB_SRCS})
|
|
|
|
target_link_libraries(plasmaweather ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KUNITCONVERSION_LIBS} ${KDE4WORKSPACE_WEATHERION_LIBRARY} ${KDE4_KNEWSTUFF3_LIBS})
|
|
set_target_properties(plasmaweather PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
|
|
install(TARGETS plasmaweather ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
# nothing outside of kdeplasma-addons uses this library, and the API is not stable -> do not install headers!
|
|
#install(FILES ${plasmaweather_HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/plasmaweather COMPONENT Devel)
|
|
|
|
install(FILES plasmaweather.knsrc DESTINATION ${CONFIG_INSTALL_DIR})
|