Better qmakefile description.

This commit is contained in:
Martin Rotter 2016-08-10 06:01:50 +02:00
parent 2dbd59f3a6
commit 8a60e8b763

View File

@ -34,7 +34,8 @@
# make install # make install
# #
# Variables: # 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". # LRELEASE_EXECUTABLE - specifies the name/path of "lrelease" executable, defaults to "lrelease".
# #
# Other information: # Other information:
@ -79,6 +80,10 @@ isEmpty(PREFIX) {
win32 { win32 {
PREFIX = $$OUT_PWD/app PREFIX = $$OUT_PWD/app
} }
unix:!mac {
PREFIX = $$OUT_PWD/usr
}
} }
isEmpty(LRELEASE_EXECUTABLE) { isEmpty(LRELEASE_EXECUTABLE) {