You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably an easy fix to use FetchContent_MakeAvailable(...) instead as the error describes, since this project already targets cmake_minimum_required(VERSION 3.14).
CMake Warning (dev) at /usr/share/cmake/Modules/FetchContent.cmake:1953 (message):
Calling FetchContent_Populate(zstd) is deprecated, call
FetchContent_MakeAvailable(zstd) instead. Policy CMP0169 can be set to OLD
to allow FetchContent_Populate(zstd) to be called directly for now, but the
ability to call it with declared details will be removed completely in a
future version.
Call Stack (most recent call first):
cmake_build/_deps/cpptrace-src/CMakeLists.txt:396 (FetchContent_Populate)
This warning is for project developers. Use -Wno-dev to suppress it.
...
CMake Warning (dev) at /usr/share/cmake/Modules/FetchContent.cmake:1953 (message):
Calling FetchContent_Populate(libdwarf) is deprecated, call
FetchContent_MakeAvailable(libdwarf) instead. Policy CMP0169 can be set to
OLD to allow FetchContent_Populate(libdwarf) to be called directly for now,
but the ability to call it with declared details will be removed completely
in a future version.
Call Stack (most recent call first):
cmake_build/_deps/cpptrace-src/CMakeLists.txt:431 (FetchContent_Populate)
This warning is for project developers. Use -Wno-dev to suppress it.
The text was updated successfully, but these errors were encountered:
Probably an easy fix to use
FetchContent_MakeAvailable(...)
instead as the error describes, since this project already targetscmake_minimum_required(VERSION 3.14)
.The text was updated successfully, but these errors were encountered: