mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 20:22:40 +02:00
16 lines
503 B
CMake
16 lines
503 B
CMake
#
|
|
# Copyright 2019 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
macro(TARGET_WEBRTC)
|
|
|
|
if (ANDROID)
|
|
else()
|
|
target_include_directories(${TARGET_NAME} SYSTEM PUBLIC "${VCPKG_INSTALL_ROOT}/include/webrtc")
|
|
find_library(WEBRTC_LIBRARY NAMES webrtc PATHS ${VCPKG_INSTALL_ROOT}/lib/ NO_DEFAULT_PATH)
|
|
target_link_libraries(${TARGET_NAME} ${WEBRTC_LIBRARY})
|
|
endif()
|
|
|
|
endmacro()
|