diff options
Diffstat (limited to 'pbap/CMakeLists.txt')
-rw-r--r-- | pbap/CMakeLists.txt | 21 |
1 files changed, 19 insertions, 2 deletions
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) |