(C++) HelloWorldQtCreatorUbuntu
February 24, 2017 · View on GitHub
(C++) HelloWorldQtCreatorUbuntu
Hello World using Qt Creator under Ubuntu is Hello World program using the Qt Creator IDE under Ubuntu.
Technical facts
Operating system(s) or programming environment(s)
Lubuntu 15.04 (vivid)
Qt Creator 3.1.1
- G++ 4.9.2
Libraries used:
Qt project file: ./CppHelloWorldQtCreatorUbuntu/CppHelloWorldQtCreatorUbuntu.pro
QT += core QT -= gui CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp
./CppHelloWorldQtCreatorUbuntu/main.cpp
#include <iostream> int main() { std::cout << "Hello World\n"; }