feat: Cmake port mpd/media_info_proto (#1152)
Issue #1047 (CMake porting)
This commit is contained in:
parent
14a708d009
commit
5f435708e7
|
@ -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)
|
||||
|
|
|
@ -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)
|
|
@ -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)
|
Loading…
Reference in New Issue