diff options
Diffstat (limited to 'mediaplayer')
-rw-r--r-- | mediaplayer/CMakeLists.txt | 21 | ||||
-rw-r--r-- | mediaplayer/qtappfw-mediaplayer.pc.in | 12 |
2 files changed, 31 insertions, 2 deletions
diff --git a/mediaplayer/CMakeLists.txt b/mediaplayer/CMakeLists.txt index 75bbca1..e21b590 100644 --- a/mediaplayer/CMakeLists.txt +++ b/mediaplayer/CMakeLists.txt @@ -1,2 +1,19 @@ -add_headers(mediaplayer.h) -add_sources(mediaplayer.cpp) + +CONFIGURE_FILE("qtappfw-mediaplayer.pc.in" "qtappfw-mediaplayer.pc" @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qtappfw-mediaplayer.pc + DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig) + +add_library(qtappfw-mediaplayer SHARED mediaplayer.cpp) + +target_include_directories(qtappfw-mediaplayer PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") +target_include_directories(qtappfw-mediaplayer PUBLIC "${CMAKE_INSTALL_INCLUDEDIR}") + +target_link_libraries(qtappfw-mediaplayer qtappfw-core) +set_target_properties(qtappfw-mediaplayer PROPERTIES + VERSION ${PROJECT_VERSION} + SOVERSION 1 + PUBLIC_HEADER mediaplayer.h) + +install(TARGETS qtappfw-mediaplayer + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/qtappfw-mediaplayer) diff --git a/mediaplayer/qtappfw-mediaplayer.pc.in b/mediaplayer/qtappfw-mediaplayer.pc.in new file mode 100644 index 0000000..933e9dc --- /dev/null +++ b/mediaplayer/qtappfw-mediaplayer.pc.in @@ -0,0 +1,12 @@ +prefix=@DEST_DIR@ +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: qtappfw-mediaplayer +Description: Library wrapping AGL AppFW mediaplayer data in Qt objects +Version: 1.0.0 + +Requires: Qt5Qml +Libs: -L${libdir} -lqtappfw-mediaplayer +Cflags: -I${includedir}/qtappfw-mediaplayer |