From 85607aed20dc0d84c54b6b4412fa035667e26ea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Cervi=C3=B1o?= Date: Mon, 27 Jan 2020 09:26:50 +0100 Subject: [PATCH] Add an option to specify OpenSSL dir in nICER (#1538) --- erizo/src/third_party/nicer.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erizo/src/third_party/nicer.cmake b/erizo/src/third_party/nicer.cmake index 71b5c29c46..dfe6997c3c 100644 --- a/erizo/src/third_party/nicer.cmake +++ b/erizo/src/third_party/nicer.cmake @@ -1,9 +1,9 @@ set(NICER_BUILD "${CMAKE_CURRENT_BINARY_DIR}/libdeps/nicer") ExternalProject_Add(project_nicer GIT_REPOSITORY "https://github.com/lynckia/nicer.git" - GIT_TAG "1.4" + GIT_TAG "1.5" PREFIX ${NICER_BUILD} - CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${NICER_BUILD} + CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=${NICER_BUILD} -DTHIRD_PARTY_LIB=${THIRD_PARTY_LIB} DOWNLOAD_DIR "${NICER_BUILD}/src" INSTALL_DIR "${NICER_BUILD}/out" )