In this short guide explains how you can work with XCode and the Qt libraries. First, after choosing the project name (NP), we create a new folder and name checks as a NP.
Inside the folder create an empty file, for convenience may be called main.cpp. Then open a terminal, we move into the newly created folder and type : qmake -project e qmake.
All’interno della cartella si creerà il progetto XCode con il nome NP. Ora non ci resta che provare a scrivere il codice cullati dall’autocompletamento e tutti i favolosi servizi che offre XCode. Ecco un esempio di Hello World :
#include "QApplication"
#include "QPushButton"
int main(int argc, char * argv[])
{
QApplication app(argc, argv);
QPushButton * b = new QPushButton("Ciao Mondo");
b->show();
return app.exec();
}
Premete Build and Go e se tutto funziona siete pronti per lavorare con le Qt e XCode.
0 comments:
Post a Comment