overte/libraries/networking/CMakeLists.txt
Dale Glass bb1331c0cb Fix memory debugging.
* Disables WebRTC (build fails)
* Recommends disabling optimization
* Recommends enabling debugging
* Remove forced optimization from plugins
2023-11-05 19:05:09 +01:00

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 ()