forked from intel/AVBStreamHandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.avb_video_bridge.txt
27 lines (23 loc) · 1.09 KB
/
CMakeLists.avb_video_bridge.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Copyright (C) 2018 Intel Corporation. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#------------------------------------------------------------------
# Build the AVB Video Bridge library
#------------------------------------------------------------------
add_library( ias-media_transport-avb_video_bridge STATIC
private/src/avb_video_bridge/IasAvbVideoBridge.cpp
private/src/avb_video_bridge/IasAvbVideoSender.cpp
private/src/avb_video_bridge/IasAvbVideoReceiver.cpp
private/src/avb_video_common/IasAvbVideoShmConnection.cpp
private/src/avb_video_common/IasAvbVideoRingBuffer.cpp
private/src/avb_video_common/IasAvbVideoRingBufferShm.cpp
private/src/avb_video_common/IasAvbVideoRingBufferFactory.cpp
)
target_link_libraries( ias-media_transport-avb_video_bridge ias-media_transport-avb_helper )
target_link_libraries( ias-media_transport-avb_video_bridge ias-audio-common )
target_link_libraries( ias-media_transport-avb_video_bridge dlt )
if (${IAS_IS_HOST_BUILD})
target_compile_options(ias-media_transport-avb_video_bridge PUBLIC -DIAS_HOST_BUILD=1)
endif()