Setup Quick Source for Qt
You may add the following line to your .bashrc
#!/bin/sh
# Set the version to match what is installed on your system
export QT_VERSION=6.x.x
# Add Cmake, Ninja, QtCreator, QtDesignStudio to PATH
export PATH=/home/$USER/Qt/Tools/CMake/bin:/home/josh/Qt/Tools/Ninja:/home/$USER/Qt/Tools/QtCreator/bin:/home/$USER/Qt/Tools/QtDesignStudio/bin:$PATH
# Add Qt to the PATH enviroment, and LD_LIBRARY_PATH
export PATH=/home/$USER/Qt/$QT_VERSION/gcc_64/bin:$PATH
export LD_LIBRARY_PATH=/home/$USER/Qt/$QT_VERSION/gcc_64/lib/:$LD_LIBRARY_PATH