H618 Ubuntu 22.04 Qt Development Environment Setup Guide

1. Preparation H618 development board, remote tools like WinSCP and PuTTY, and enabling SSH remote login on Ubuntu. 2. Build Environment Setup First, update the system package list and install the development tools and dependency libraries required to build Qt. Run the following commands in a terminal: sudo apt update sudo apt install build-essential g++ libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev libx11-dev libxext-dev libxtst-dev -y The above covers the GCC compiler, the Make tool, and the X11 and OpenGL libraries required by the Qt GUI. ...

April 29, 2026 · 6 min · 1165 words · siyou · 
H618

Tutorial on Configuring Code Formatting in Qt Creator

Preface Code style is not just about aesthetics; it is a crucial component of code quality. A good code style enhances readability and reduces the likelihood of errors, thereby improving the overall quality of the software. Specifically, a consistent code style helps in the following ways: Improved Readability: Consistent formatting rules make the code easier for other developers to understand, which is especially important in collaborative projects. Reduced Errors: Standardized code style can prevent common programming mistakes, such as mismatched brackets, thus increasing code stability. Enhanced Team Collaboration: When team members adhere to the same code style, the code review process becomes more efficient. It minimizes communication barriers caused by stylistic differences, leading to smoother and more harmonious teamwork. In summary, using a third-party plugin to unify code style not only improves code quality but also strengthens team cohesion and facilitates the smooth progress of a project. ...

February 24, 2026 · 2 min · 418 words · siyou · 
Configuring the astyle plugin in Qt