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 --- voice/CMakeLists.txt | 26 ++++++++++++++++++++++---- voice/qtappfw-voice.pc.in | 12 ++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 voice/qtappfw-voice.pc.in (limited to 'voice') diff --git a/voice/CMakeLists.txt b/voice/CMakeLists.txt index 6363c3b..3de0586 100644 --- a/voice/CMakeLists.txt +++ b/voice/CMakeLists.txt @@ -1,4 +1,22 @@ -add_headers(voice.h - voiceagentregistry.h voiceagentprofile.h voiceagentmodel.h) -add_sources(voice.cpp - voiceagentregistry.cpp voiceagentprofile.cpp voiceagentmodel.cpp) + +CONFIGURE_FILE("qtappfw-voice.pc.in" "qtappfw-voice.pc" @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qtappfw-voice.pc + DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig) + +add_library(qtappfw-voice SHARED voice.cpp + voiceagentregistry.cpp + voiceagentprofile.cpp + voiceagentmodel.cpp) + +target_include_directories(qtappfw-voice PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") +target_include_directories(qtappfw-voice PUBLIC "${CMAKE_INSTALL_INCLUDEDIR}") + +target_link_libraries(qtappfw-voice qtappfw-core) +set_target_properties(qtappfw-voice PROPERTIES + VERSION ${PROJECT_VERSION} + SOVERSION 1 + PUBLIC_HEADER "voice.h;voiceagentregistry.h;voiceagentprofile.h;voiceagentmodel.h") + +install(TARGETS qtappfw-voice + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/qtappfw-voice) diff --git a/voice/qtappfw-voice.pc.in b/voice/qtappfw-voice.pc.in new file mode 100644 index 0000000..ebc5276 --- /dev/null +++ b/voice/qtappfw-voice.pc.in @@ -0,0 +1,12 @@ +prefix=@DEST_DIR@ +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: qtappfw-voice +Description: Library wrapping AGL AppFW voice data in Qt objects +Version: 1.0.0 + +Requires: Qt5Qml +Libs: -L${libdir} -lqtappfw-voice +Cflags: -I${includedir}/qtappfw-voice -- cgit 1.2.3-korg