diff options
Diffstat (limited to 'bluetooth')
-rw-r--r-- | bluetooth/CMakeLists.txt | 21 | ||||
-rw-r--r-- | bluetooth/qtappfw-bt.pc.in | 12 |
2 files changed, 31 insertions, 2 deletions
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) diff --git a/bluetooth/qtappfw-bt.pc.in b/bluetooth/qtappfw-bt.pc.in new file mode 100644 index 0000000..d32e8ac --- /dev/null +++ b/bluetooth/qtappfw-bt.pc.in @@ -0,0 +1,12 @@ +prefix=@DEST_DIR@ +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: qtappfw-bt +Description: Library wrapping AGL AppFW bluetooth data in Qt objects +Version: 1.0.0 + +Requires: Qt5Qml +Libs: -L${libdir} -lqtappfw-bt +Cflags: -I${includedir}/qtappfw-bt |