Тема: Пояснення частини коду для створення AppDir linuxdeploy
Знайшов варіант пакування Qt додатку за допомогою linuxdeploy, але не розумію частину цього коду.
# fetch sources (you could as well use a tarball etc.)
> git clone https://github.com/linuxdeploy/QtQuickApp.git
> cd QtQuickApp
# build out of source
> mkdir build
> cd build
# configure build system
# the flags below are the bare minimum that is needed, the app might define additional variables that might have to be set
> cmake .. -DCMAKE_INSTALL_PREFIX=/usr
# build the application on all CPU cores
> make -j$(nproc)
# now "install" resources into future AppDir
> make install DESTDIR=AppDir
Завантажую проєкт, заходжу в теку із ним, створюю теку build, а далі незрозуміло, що cmake робить і нащо той префікс.
Повна стаття тут: https://docs.appimage.org/packaging-gui … l-workflow