diff --git a/packager/CMakeLists.txt b/packager/CMakeLists.txt index db666f8538..dc09987438 100644 --- a/packager/CMakeLists.txt +++ b/packager/CMakeLists.txt @@ -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) diff --git a/packager/mpd/CMakeLists.txt b/packager/mpd/CMakeLists.txt new file mode 100644 index 0000000000..4a06e694fc --- /dev/null +++ b/packager/mpd/CMakeLists.txt @@ -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) \ No newline at end of file diff --git a/packager/mpd/base/CMakeLists.txt b/packager/mpd/base/CMakeLists.txt new file mode 100644 index 0000000000..f99e16d587 --- /dev/null +++ b/packager/mpd/base/CMakeLists.txt @@ -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)