How to build and run a Qt application from the command line?
-
I'm trying to create a simple Qt project. I have a .ui file, a .pro file , main.cpp file and various other files
How can I run the project using a Terminal in Ubuntu?
-
That should be enough:
@
cd path/to/the/project
qmake
make
./executableName
@You can use -j flag with make to speed up compilation.