When I start debug or run Flutter app (VS Code) have warning :CMake Warning (dev) at C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.26/Modules/FetchContent.cmake:1282 (message):The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 isnot set. The policy's OLD behavior will be used. When using a URLdownload, the timestamps of extracted files should preferably be that ofthe time of extraction, otherwise code that depends on the extractedcontents might not be rebuilt if the URL changes. The OLD behaviorpreserves the timestamps from the archive instead, but this is usually notwhat you want. Update your project to the NEW behavior or specify theDOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid thisrobustness issue.Call Stack (most recent call first):flutter/ephemeral/.plugin_symlinks/objectbox_flutter_libs/windows/CMakeLists.txt:58 (FetchContent_Declare)This warning is for project developers. Use -Wno-dev to suppress it.
Download Zip https://8budimonsi.blogspot.com/?tgs=2x1Fjv
If the warning is annoying, you can add cmake_policy(SET CMP0135 OLD) to the top-level CMakeLists.txt alongside other cmake_policys to explicitly choose the old behavior. NEW should work fine too, I think.
35fe9a5643