diff options
author | Raquel Medina <raquel.medina@konsulko.com> | 2020-06-01 00:54:11 +0200 |
---|---|---|
committer | Raquel Medina <raquel.medina@konsulko.com> | 2020-06-09 23:17:30 +0200 |
commit | ae208a6a303982535c44a7f124f38b4252528ab4 (patch) | |
tree | 91c75a9442c209c6360d8b539be2dd50832ff1b3 /weather | |
parent | 45dc51ab0564fdec1595f1e193a18abfced88ec5 (diff) |
split qtappfw in independent qtappfw-* modules
Bug-AGL: SPEC-3390
Signed-off-by: Raquel Medina <raquel.medina@konsulko.com>
Change-Id: Ib8096c8dd2d59d3728e824ae13ba401da0971dc4
Diffstat (limited to 'weather')
-rw-r--r-- | weather/CMakeLists.txt | 21 | ||||
-rw-r--r-- | weather/qtappfw-weather.pc.in | 12 |
2 files changed, 31 insertions, 2 deletions
diff --git a/weather/CMakeLists.txt b/weather/CMakeLists.txt index bd94755..11d4f91 100644 --- a/weather/CMakeLists.txt +++ b/weather/CMakeLists.txt @@ -1,2 +1,19 @@ -add_headers(weather.h) -add_sources(weather.cpp) + +CONFIGURE_FILE("qtappfw-weather.pc.in" "qtappfw-weather.pc" @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qtappfw-weather.pc + DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig) + +add_library(qtappfw-weather SHARED weather.cpp) + +target_include_directories(qtappfw-weather PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") +target_include_directories(qtappfw-weather PUBLIC "${CMAKE_INSTALL_INCLUDEDIR}") + +target_link_libraries(qtappfw-weather qtappfw-core) +set_target_properties(qtappfw-weather PROPERTIES + VERSION ${PROJECT_VERSION} + SOVERSION 1 + PUBLIC_HEADER weather.h) + +install(TARGETS qtappfw-weather + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/qtappfw-weather) diff --git a/weather/qtappfw-weather.pc.in b/weather/qtappfw-weather.pc.in new file mode 100644 index 0000000..1e3e5e1 --- /dev/null +++ b/weather/qtappfw-weather.pc.in @@ -0,0 +1,12 @@ +prefix=@DEST_DIR@ +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: qtappfw-weather +Description: Library wrapping AGL AppFW weather data in Qt objects +Version: 1.0.0 + +Requires: Qt5Qml +Libs: -L${libdir} -lqtappfw-weather +Cflags: -I${includedir}/qtappfw-weather |