I just started using QT and I have a question regarding some basic stuff.
I have built a project with two files .pro file and .cpp file.
How can I deploy this application and build the .exe file in order to use it in shell?
Can you recommend me any good tutorial for this?
When you compile the file, it will create a binary executable.
It depends on what you have in your project file as to what it will be called, to set the name in the pro file use:
Or I think it will use the name of the pro file. Linux executables traditionally don’t have extensions like windows.
I then create an installer using bitrock’s installer:
http://bitrock.com/
Remembering to package up the libraries as well.