.EXE file is not opening and not find exe file
-
while i am trying to execute the .exe file getting the below error
"This application failed to start because no Qt Platform plugin could be initialized. Reinstalling the application may fixe this Problem"
and It is not generating .exe file after run in release Mode i can not see any error and also not able to find the exe file
-
while i am trying to execute the .exe file getting the below error
"This application failed to start because no Qt Platform plugin could be initialized. Reinstalling the application may fixe this Problem"
and It is not generating .exe file after run in release Mode i can not see any error and also not able to find the exe file
@Puneeth_BR said in .EXE file is not opening and not find exe file:
and It is not generating .exe file after run in release Mode i can not see any error and also not able to find the exe file
This contradicts with the error you posted. You get this error only if you're trying to start an exe, but plug-ins are missing.
So, please clarify: are you able to build your app or not? Or it does not generate executable in release mode?To get rid of that error you have to deploy your app properly. See https://doc.qt.io/qt-6/deployment.html
-
before it was generating .Exe Now it is not building .exe file in release mode and i am using the version 5.15.2 and mingw 64
-
before it was generating .Exe Now it is not building .exe file in release mode and i am using the version 5.15.2 and mingw 64
@Puneeth_BR If it is not building then check the build log to see what is happening...
-
I checked the Log it was a path mistake now it is building but not opening the .exe file getting the Below error.
"This application failed to start because no Qt Platform plugin could be initialized. Reinstalling the application may fixe this Problem"
and after running "windeployqt" command i am getting the below error
The code execution cannot proceed because VCRUNTIME140_APP.dll was not found. Reinstalling may fix the this problem.
and also for "MSVCP140_APP.dll file
-
I checked the Log it was a path mistake now it is building but not opening the .exe file getting the Below error.
"This application failed to start because no Qt Platform plugin could be initialized. Reinstalling the application may fixe this Problem"
and after running "windeployqt" command i am getting the below error
The code execution cannot proceed because VCRUNTIME140_APP.dll was not found. Reinstalling may fix the this problem.
and also for "MSVCP140_APP.dll file
@Puneeth_BR Are you trying to execute your application on another machine (not the machine where you built it)? If you you will need to install the Microsoft C++ redistributable, see https://answers.microsoft.com/en-us/windows/forum/all/vcruntime140dll-and-msvcp140dll-missing-in-windows/caf454d1-49f4-4d2b-b74a-c83fb7c38625
-
No, I am using same machine for built and execution
-
Then install the redistributable on your machine
-
Okay , @jsulm Thank you
I will check it out.