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. ...