When I compile the project then work in my computer there is no error. But Whenever I run the project in another computer, occurred the error

When I compile the project then work in my computer there is no error. But Whenever I run the project in another computer, occurred the error

You should put qwindows.dll in a directory named platforms alongside the executable. Try to deploy your application using The Windows Deployment Tool which could be found in QTDIR/bin/windeployqt.exe. It automatically puts all necessary files in your application directory.
Open your command prompt and add the path to your Qt directory and it's bin folder to the PATH variable like :
set PATH= path\to\Qt\bin
Next run the windows deployment tool with your application path as the argument:
windeployqt.exe <path-to-app-binary>