Sample "Hello World!" project in Qt.
In this project you will see:
- how to write a minimal Qt application
- how to generate a Makefile using
qmake
- how to compile your code
This is a didactic project, it is not intended for production.
To compile Hello World!
, clone or download this repository, then run qmake
and make
:
git clone https://github.com/Unipd-Object-Oriented-Programming/hello-world.git
cd hello-world
qmake
make
Make sure to have Qt
, make
and a C++
compiler installed and available in your path.
To execute the application run:
./hello-world