resolve : Neither dumpbin nor llvm-objdump could be found.

Hi, I am trying to build BarChartQt and I’ve configured the project correctly:
image

However, when I execute Cmake --build ., I got errors:

PS D:\Study\VTK\Tutorial-MinGW\BarChartQt\build> Cmake --build .
[ 20%] Automatic MOC and UIC for target BarChartQt
rtQtDriver.cxx.obj
[100%] Linking CXX executable BarChartQt.exe
resolve : Neither dumpbin nor llvm-objdump could be found. Can not take care of dll dependencies.
At D:\software\vcpkg\scripts\buildsystems\msbuild\applocal.ps1:151 char:1
+ resolve($targetBinary)
+ ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,resolve

[100%] Built target BarChartQt

Althouth the exe file could be built, when I opened it, it pops out error messages:
image
image

The Chinese means that it could not locate the program entry for dll, but I checked the libvtkGUISupportQt-9.1d.dll and it is in the correct folder:
image

I appreciate if anyone could solve this issue

Hello,

Please, check these:

The “d” in the end of one of the DLL names suggests it’s a debug version. So, it seems that your program is trying to load debug and release libraries in the same runtime. This more than often results in misbehavior in Windows.

best,

PC