Problem with 3rd Party Lib When Building Static Library For ARM64 With Visual Studio (2019)

I’ve found the solution.
First, I had to add some options to the linker Command Line: -lm -lz
Then I had to change the order of the libraries in the linker input dependencies:
opencv_imgcodecs;opencv_imgproc;opencv_calib3d;opencv_flann;opencv_features2d;opencv_core;tegra_hal;libjpeg-turbo;libopenjp2;IlmImf;libpng;libtiff;libwebp;ittnotify;tbb;opencv_highgui;opencv_videoio

This worked for me, and hopefully for others, too. :wink: