mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Earlier versions don't work with WebRTC, and cause linking errors. OpenSSL 1.1 is supported in Ubuntu 18.04, although 1.0 can still be installed.
25 lines
972 B
CMake
25 lines
972 B
CMake
set(TARGET_NAME ice-server)
|
|
|
|
# setup the project and link required Qt modules
|
|
setup_hifi_project(Network)
|
|
|
|
# link the shared hifi libraries
|
|
link_hifi_libraries(embedded-webserver networking shared)
|
|
package_libraries_for_deployment()
|
|
|
|
# find OpenSSL
|
|
find_package(OpenSSL 1.1.0 REQUIRED)
|
|
|
|
if (APPLE AND ${OPENSSL_INCLUDE_DIR} STREQUAL "/usr/include")
|
|
# this is a user on OS X using system OpenSSL, which is going to throw warnings since they're deprecating for their common crypto
|
|
message(WARNING "The found version of OpenSSL is the OS X system version. This will produce deprecation warnings."
|
|
"\nWe recommend you install a newer version (at least 1.0.1h) in a different directory and set OPENSSL_ROOT_DIR in your env so Cmake can find it.")
|
|
endif ()
|
|
|
|
include_directories(SYSTEM "${OPENSSL_INCLUDE_DIR}")
|
|
|
|
setup_memory_debugger()
|
|
setup_thread_debugger()
|
|
|
|
# append OpenSSL to our list of libraries to link
|
|
target_link_libraries(${TARGET_NAME} ${OPENSSL_LIBRARIES})
|