Better qmakefile description.

This commit is contained in:
Martin Rotter 2016-08-10 06:01:50 +02:00
parent 2dbd59f3a6
commit 8a60e8b763
1 changed files with 6 additions and 1 deletions

View File

@ -34,7 +34,8 @@
# make install
#
# Variables:
# PREFIX - specifies base folder to which files are copied during "make install" step.
# PREFIX - specifies base folder to which files are copied during "make install"
# step, defaults to "$$OUT_PWD/usr" on Linux and to "$$OUT_PWD/app" on Windows.
# LRELEASE_EXECUTABLE - specifies the name/path of "lrelease" executable, defaults to "lrelease".
#
# Other information:
@ -79,6 +80,10 @@ isEmpty(PREFIX) {
win32 {
PREFIX = $$OUT_PWD/app
}
unix:!mac {
PREFIX = $$OUT_PWD/usr
}
}
isEmpty(LRELEASE_EXECUTABLE) {