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 --- bluetooth/CMakeLists.txt | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'bluetooth/CMakeLists.txt') diff --git a/bluetooth/CMakeLists.txt b/bluetooth/CMakeLists.txt index 0e05d3b..e514aab 100644 --- a/bluetooth/CMakeLists.txt +++ b/bluetooth/CMakeLists.txt @@ -1,2 +1,19 @@ -add_headers(bluetooth.h bluetoothmodel.h) -add_sources(bluetooth.cpp bluetoothmodel.cpp) + +CONFIGURE_FILE("qtappfw-bt.pc.in" "qtappfw-bt.pc" @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qtappfw-bt.pc + DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig) + +add_library(qtappfw-bt SHARED bluetooth.cpp bluetoothmodel.cpp) + +target_include_directories(qtappfw-bt PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") +target_include_directories(qtappfw-bt PRIVATE "${CMAKE_INSTALL_INCLUDEDIR}") + +target_link_libraries(qtappfw-bt qtappfw-core) +set_target_properties(qtappfw-bt PROPERTIES + VERSION ${PROJECT_VERSION} + SOVERSION 1 + PUBLIC_HEADER "bluetooth.h;bluetoothmodel.h") + +install(TARGETS qtappfw-bt + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/qtappfw-bt) -- cgit 1.2.3-korg