Skip to content

Commit

Permalink
Fix for #120: FetchContent_Populate() is deprecated in CMake 3.30, Fe…
Browse files Browse the repository at this point in the history
…tchContent_MakeAvailable() is recommended instead
  • Loading branch information
Vasily Zakharov committed Sep 18, 2024
1 parent 2c384c2 commit 3b53911
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/GetCryptoppSources.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ else()
QUIET
)
endif()
fetchcontent_populate(cryptopp)
FetchContent_MakeAvailable(cryptopp)
if(CRYPTOPP_USE_PEM_PACK)
fetchcontent_populate(cryptopp-pem)
FetchContent_MakeAvailable(cryptopp-pem)
endif()

0 comments on commit 3b53911

Please sign in to comment.