**Describe the bug** Building CQtDeployer from source on Ubuntu 24.04. Running `CQtDeployer -h` gives: ``` CQtDeployer: error while loading shared libraries: libQuasarApp.so.1.5.3: cannot open shared object file: No such file or directory ``` However, running `./build/src/CQtDeployer/CQtDeployer` works. Build Command: ``` bash git clone https://github.com/QuasarApp/CQtDeployer.git -b v1.6.2365 --depth=1 && \ cd CQtDeployer && \ git submodule update --init --recursive --depth=1 && \ cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCQT_DEPLOYER_TESTS=Off -DCQT_DEPLOYER_TOOL=Off && \ cmake --build build -- -j$(nproc) && \ cmake --install build && \ CQtDeployer -h ``` **Desktop (please complete the following information):** - OS: Ubuntu - Version 24.04 Thank you for your help!