This is a simple command line application built using Qt 6 that demonstrates basic functionality by outputting "Hello, World!" to the console.
- Qt 6
- CMake
To build the application, follow these steps:
-
Clone the repository:
git clone <repository-url> cd qt-cli-app
-
Create a build directory:
mkdir build cd build
-
Run CMake to configure the project:
cmake ..
-
Build the application:
cmake --build .
After building the application, you can run it using the following command:
./qt-cli-app
You should see the output:
Hello, World!
This project is licensed under the AGPLv3-or-later license. See the LICENSE file for more details.
Hello World C++ application
Copyright (C) 2017-2025 Masscollabs Services
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.