feat: Cmake port mpd/media_info_proto (#1152)

Issue #1047 (CMake porting)
This commit is contained in:
Bartek Zdanowski 2022-12-15 17:35:00 +01:00 committed by GitHub
parent 14a708d009
commit 5f435708e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 0 deletions

View File

@ -48,6 +48,7 @@ include("protobuf.cmake")
add_subdirectory(file)
add_subdirectory(kv_pairs)
add_subdirectory(media)
add_subdirectory(mpd)
add_subdirectory(status)
add_subdirectory(third_party)
add_subdirectory(tools)

View File

@ -0,0 +1,7 @@
# Copyright 2022 Google LLC. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
add_subdirectory(base)

View File

@ -0,0 +1,8 @@
# Copyright 2022 Google LLC. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
add_proto_library(mpd_media_info_proto STATIC
media_info.proto)