shundhammer / qdirstat

QDirStat - Qt-based directory statistics (KDirStat without any KDE - from the original KDirStat author)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow build to specify install prefix

adrianjohnson opened this issue · comments

I couldn't find any way to set the install prefix when building and had the edit the paths in .pro files. It would be useful to provide a documented way to set the install prefix.

I use:

make install INSTALL_ROOT=/usr

It's not at build time though.

Fixed.

You can now specify the installation prefix during qmake:

qmake INSTALL_PREFIX=/usr/local

Then continue as usual:

make
sudo make install

See also https://github.com/shundhammer/qdirstat#install-to-a-custom-directory and the caveat/limitations mentioned there.