mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 20:28:07 +02:00
* Disables WebRTC (build fails) * Recommends disabling optimization * Recommends enabling debugging * Remove forced optimization from plugins
32 lines
1,004 B
CMake
32 lines
1,004 B
CMake
# Copyright 2013-2019, High Fidelity, Inc.
|
|
# Copyright 2022-2023 Overte e.V.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set(TARGET_NAME audio-client)
|
|
if (ANDROID)
|
|
set(PLATFORM_QT_COMPONENTS AndroidExtras)
|
|
endif ()
|
|
setup_hifi_library(Network Multimedia ${PLATFORM_QT_COMPONENTS})
|
|
link_hifi_libraries(audio plugins)
|
|
include_hifi_library_headers(shared)
|
|
include_hifi_library_headers(networking)
|
|
include_hifi_library_headers(script-engine)
|
|
|
|
if (ANDROID)
|
|
else ()
|
|
if (NOT DISABLE_WEBRTC )
|
|
target_webrtc()
|
|
else()
|
|
message(WARNING "WebRTC is supported on this platform but has been disabled for this build (likely memory debugging)")
|
|
endif()
|
|
endif ()
|
|
|
|
# append audio includes to our list of includes to bubble
|
|
target_include_directories(${TARGET_NAME} PUBLIC "${HIFI_LIBRARY_DIR}/audio/src")
|
|
|
|
# have CMake grab externals for us
|
|
if (APPLE)
|
|
find_library(CoreAudio CoreAudio)
|
|
find_library(CoreFoundation CoreFoundation)
|
|
target_link_libraries(${TARGET_NAME} ${CoreAudio} ${CoreFoundation})
|
|
endif ()
|