summaryrefslogtreecommitdiffstats
path: root/voice
diff options
context:
space:
mode:
authorRaquel Medina <raquel.medina@konsulko.com>2020-06-01 00:54:11 +0200
committerRaquel Medina <raquel.medina@konsulko.com>2020-06-09 23:17:30 +0200
commitae208a6a303982535c44a7f124f38b4252528ab4 (patch)
tree91c75a9442c209c6360d8b539be2dd50832ff1b3 /voice
parent45dc51ab0564fdec1595f1e193a18abfced88ec5 (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 'voice')
-rw-r--r--voice/CMakeLists.txt26
-rw-r--r--voice/qtappfw-voice.pc.in12
2 files changed, 34 insertions, 4 deletions
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