Hello, work with the QT development environment, having written some basic application functionality, decided to build it and transfer it to another computer, check whether everything works correctly. Collected the program DLLCollector. Everything came together perfectly and worked, but after a couple of weeks, after writing a lot of code, I decided to reassemble the project and transfer it, surprisingly the dll of the api-ms-win-core-libraryloader-l1-2-0.dll, api-ms library was required. -win-core-localization-l1-2-0.dll. I began to look for them in the QT and MS VS catalog there, they were not there, then I downloaded them from the Internet, but not everything is so easy after this api-ms-win-core-heap-l2-1-0.dll library was needed, which simply not on the Internet, there is only api-ms-win-core-heap-l1-2-0.dll, but it does not fit ... I don’t know what to do anymore, can someone tell me what the problem may be and how to fix it?
1 answer
When compiling Qt applications with the Visual C ++ compiler ( MVC ), additional DLLs are used . For import, you need to transfer all the necessary libraries, and often install the Visual C ++ free distribution package. Detailed article here .
|