Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 936 Bytes

File metadata and controls

64 lines (44 loc) · 936 Bytes

HelloWorldConsole

The classic first application "Hello, World!" with QTextStream stream.

Sources

src/HelloWorldConsole.cpp

CMakeLists.txt

Output

Hello, World!

Generate and build

Qt Creator

To build these projects, open HelloWorldConsole.pro file with Qt Creator.

CMake

To build this project, open "Terminal" and type following lines:

Set CMAKE_PREFIX_PATH with Qt6 install path.

Windows :

mkdir build
cd build
cmake ..
start ./HelloWorldConsole.sln

macOS :

mkdir build
cd build
cmake .. -G "Xcode"
open ./HelloWorldConsole.xcodeproj

Linux with Code::Blocks :

mkdir build
cd build
cmake .. -G "CodeBlocks - Unix Makefiles"
xdg-open ./HelloWorldConsole.cbp > /dev/null 2>&1

Linux :

mkdir build
cd build
cmake .. 
cmake --build . --config Debug
./HelloWorldConsole