Ubuntu 22.04

This section contains instructions on how to setup your development environment in Ubuntu 22.04 in order to compile the Skydel Plug-ins examples.

Updates & Packages

sudo apt update
sudo apt dist-upgrade
sudo apt install build-essential libgl1-mesa-dev libxcb-xinerama0 uuid-dev git ninja-build

wget -qO- https://github.com/Kitware/CMake/releases/download/v4.0.3/cmake-4.0.3-linux-x86_64.tar.gz | tar -xz && sudo cp -r cmake-4.0.3-linux-x86_64/* /usr/ && rm -rf cmake-4.0.3-linux-x86_64
Packages detailed information
  • build-essential -> GCC and G++ 11.4.0

  • libgl1-mesa-dev -> OpenGL

  • libxcb-xinerama0 -> Qt installer

  • uuid-dev -> Skydel remote API

  • git -> Source code

  • cmake -> Compilation

  • ninja-build -> Compilation

GCC/G++

Version should be 11.4.0 for gcc and g++
gcc --version
> gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0

g++ --version
> g++ (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0

CMake

Version should be 4.0.3 for cmake

Ninja

Version should be 1.10.1 for ninja

Qt

Copy the following contents in a file named qt-setup.sh .

Open a terminal and run the commands:

You can now delete the file qt-setup.sh .

Version should be 5.15.17 for Qt
Version should be 14.0.1 for Qt Creator

Last updated