diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4559c5731..1725c0afa 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,14 +4,15 @@ set (CMAKE_CXX_STANDARD 17) if (DEFINED ENV{RELIC_MAIN}) set(RELIC_GIT_TAG "origin/main") else () - set(RELIC_GIT_TAG "b7b2266a0e4ee6f628f61d3ab638f524a18b52f1") + # This is currently anchored to upstream b7b2266a0e4ee6f628f61d3ab638f524a18b52f1 + set(RELIC_GIT_TAG "d20d97c046da2c1689916569e9895b48a4693624") endif () message(STATUS "Relic will be built from: ${RELIC_GIT_TAG}") FetchContent_Declare( relic - GIT_REPOSITORY https://github.com/relic-toolkit/relic.git + GIT_REPOSITORY https://github.com/AmineKhaldi/relic.git GIT_TAG ${RELIC_GIT_TAG} ) FetchContent_MakeAvailable(relic)