-
These errors seem to be caused by the library not being linked, but I checked that the lib is indeed linked. so am I not linked something somewhere, or am I linked something wrong? The steps I did are as follows: 1. Download mdflib-main.zip and use cmake generate visual studio project for mdflib 3.Creat a new project to callmdfd.lib, but show errors Thanks for any answer! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Don't panic. The ParseMf4.exe project is missing both zlib and expat libraries. The C++ linkers are not that smart regarding this common error. The errors are generated when linking the executable, so you need to manually add these external libraries to your executable project. I think it should be the static version (MT) version of the libraries you should use and yes, the MT and MD option in VC is just weird causing a lot of the above problem. |
Beta Was this translation helpful? Give feedback.
Don't panic.
The ParseMf4.exe project is missing both zlib and expat libraries. The C++ linkers are not that smart regarding this common error. The errors are generated when linking the executable, so you need to manually add these external libraries to your executable project.
I think it should be the static version (MT) version of the libraries you should use and yes, the MT and MD option in VC is just weird causing a lot of the above problem.