mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 21:12:25 +02:00
* Disables WebRTC (build fails) * Recommends disabling optimization * Recommends enabling debugging * Remove forced optimization from plugins
30 lines
995 B
CMake
30 lines
995 B
CMake
set(TARGET_NAME networking)
|
|
setup_hifi_library(Network WebSockets)
|
|
link_hifi_libraries(shared platform)
|
|
|
|
target_openssl()
|
|
target_tbb()
|
|
add_crashpad()
|
|
target_breakpad()
|
|
|
|
if (WIN32 OR (UNIX AND NOT APPLE))
|
|
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 ()
|
|
|
|
if (WIN32)
|
|
# we need ws2_32.lib on windows, but it's static so we don't bubble it up
|
|
# Libraries needed for WebRTC: security.lib winmm.lib
|
|
target_link_libraries(${TARGET_NAME} ws2_32.lib security.lib winmm.lib)
|
|
elseif(APPLE)
|
|
# IOKit is needed for getting machine fingerprint
|
|
find_library(FRAMEWORK_IOKIT IOKit)
|
|
find_library(CORE_FOUNDATION CoreFoundation)
|
|
target_link_libraries(${TARGET_NAME} ${FRAMEWORK_IOKIT} ${CORE_FOUNDATION})
|
|
elseif(UNIX)
|
|
# libcrypto uses dlopen in libdl
|
|
target_link_libraries(${TARGET_NAME} ${CMAKE_DL_LIBS})
|
|
endif ()
|