diff options
author | Matt Porter <mporter@konsulko.com> | 2018-04-10 16:28:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2018-04-10 16:28:12 +0000 |
commit | 899fb9185114bc5db6b131d27f6769e17697f052 (patch) | |
tree | 6d940bbe013ae414bc79431bbf5c6168cc8744f3 /CMakeLists.txt | |
parent | 87993c904851fae1f25525abe6b732a206364d1d (diff) | |
parent | 416b30f8e23e64daeb7d1a72a231863cfe9f9b53 (diff) |
Merge "libqtappfw: mediaplayer: initial agl-service-mediaplayer binding support"
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f91d1e..64d377b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,12 +14,15 @@ CONFIGURE_FILE("qtappfw.pc.in" "qtappfw.pc" @ONLY) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qtappfw.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig) -add_library(qtappfw SHARED message.cpp messageengine.cpp telephony.cpp telephonymessage.cpp weather.cpp weathermessage.cpp) +add_library(qtappfw SHARED message.cpp messageengine.cpp + mediaplayer.cpp mediaplayermessage.cpp + telephony.cpp telephonymessage.cpp + weather.cpp weathermessage.cpp) target_link_libraries(qtappfw Qt5::WebSockets) set_target_properties(qtappfw PROPERTIES VERSION ${PROJECT_VERSION} SOVERSION 1 - PUBLIC_HEADER "message.h;messageengine.h;telephony.h;telephonymessage.h;weather.h;weathermessage.h") + PUBLIC_HEADER "message.h;messageengine.h;mediaplayer.h;mediaplayermessage.h;telephony.h;telephonymessage.h;weather.h;weathermessage.h") target_include_directories(qtappfw PRIVATE .) install(TARGETS qtappfw LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} |