From ae208a6a303982535c44a7f124f38b4252528ab4 Mon Sep 17 00:00:00 2001 From: Raquel Medina Date: Mon, 1 Jun 2020 00:54:11 +0200 Subject: split qtappfw in independent qtappfw-* modules Bug-AGL: SPEC-3390 Signed-off-by: Raquel Medina Change-Id: Ib8096c8dd2d59d3728e824ae13ba401da0971dc4 --- pbap/CMakeLists.txt | 21 +++++++++++++++++++-- pbap/qtappfw-bt-pbap.pc.in | 12 ++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 pbap/qtappfw-bt-pbap.pc.in (limited to 'pbap') diff --git a/pbap/CMakeLists.txt b/pbap/CMakeLists.txt index 441280f..04f9c67 100644 --- a/pbap/CMakeLists.txt +++ b/pbap/CMakeLists.txt @@ -1,2 +1,19 @@ -add_headers(pbap.h) -add_sources(pbap.cpp) + +CONFIGURE_FILE("qtappfw-bt-pbap.pc.in" "qtappfw-bt-pbap.pc" @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qtappfw-bt-pbap.pc + DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig) + +add_library(qtappfw-bt-pbap SHARED pbap.cpp) + +target_include_directories(qtappfw-bt-pbap PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") +target_include_directories(qtappfw-bt-pbap PUBLIC "${CMAKE_INSTALL_INCLUDEDIR}") + +target_link_libraries(qtappfw-bt-pbap qtappfw-core) +set_target_properties(qtappfw-bt-pbap PROPERTIES + VERSION ${PROJECT_VERSION} + SOVERSION 1 + PUBLIC_HEADER pbap.h) + +install(TARGETS qtappfw-bt-pbap + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/qtappfw-bt-pbap) diff --git a/pbap/qtappfw-bt-pbap.pc.in b/pbap/qtappfw-bt-pbap.pc.in new file mode 100644 index 0000000..2da9c53 --- /dev/null +++ b/pbap/qtappfw-bt-pbap.pc.in @@ -0,0 +1,12 @@ +prefix=@DEST_DIR@ +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: qtappfw-bt-pbap +Description: Library wrapping AGL AppFW bluetooth pbap data in Qt objects +Version: 1.0.0 + +Requires: Qt5Qml +Libs: -L${libdir} -lqtappfw-bt-pbap +Cflags: -I${includedir}/qtappfw-bt-pbap -- cgit 1.2.3-korg