Qt5/Qt-Creator "Hello World" Console Application

From dftwiki3
Revision as of 17:57, 1 February 2014 by Thiebaut (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

--D. Thiebaut (talk) 17:04, 1 February 2014 (EST)



This tutorial illustrates how to create a console application with Qt-5. This is slightly different from the approach taken with Qt-4. The resulting app prints out a "Hello world!" string in the console. Check this page for more Qt-related tutorials.


Video







Source Files



Console.pro



#-------------------------------------------------
#
# Project created by QtCreator 2014-02-01T16:45:38
#
#-------------------------------------------------

QT       += core

QT       -= gui

TARGET = Console
CONFIG   += console
CONFIG   -= app_bundle

TEMPLATE = app


SOURCES += main.cpp




main.cpp



#include <QDebug>

int main(int argc, char *argv[]) {
    qDebug() << "hello beautiful world!" << endl << endl;

    return 0;

}