Added QMAKE_TARGET_BUNDLE_PREFIX to .pro files.

This commit is contained in:
Luis Ángel San Martín 2017-05-23 15:46:29 +02:00
parent 383f002497
commit 921f6654a2
3 changed files with 11 additions and 2 deletions

View File

@ -3,6 +3,9 @@
# #####################################################################
TEMPLATE = app
TARGET = YACReader
QMAKE_TARGET_BUNDLE_PREFIX = "com.yacreader"
DEPENDPATH += . \
release
@ -259,4 +262,4 @@ manpage.files = ../YACReader.1
#remove leftover doc files when 'make clean' is invoked
QMAKE_CLEAN += "../changelog" "../README"
}
}

View File

@ -4,6 +4,9 @@
TEMPLATE = app
TARGET = YACReaderLibrary
QMAKE_TARGET_BUNDLE_PREFIX = "com.yacreader"
DEPENDPATH += .
INCLUDEPATH += .
INCLUDEPATH += ../common \

View File

@ -4,6 +4,9 @@
TEMPLATE = app
TARGET = YACReaderLibraryServer
QMAKE_TARGET_BUNDLE_PREFIX = "com.yacreader"
CONFIG += console
DEPENDPATH += ../YACReaderLibrary
INCLUDEPATH += ../YACReaderLibrary
@ -148,4 +151,4 @@ translation.files = ../release/languages/yacreaderlibrary_*
#manpage.path = $$DATADIR/man/man1
#manpage.files = ../YACReaderLibrary.1
}
}