Make target lowercase

This commit is contained in:
ArsenArsen 2017-09-29 12:22:58 +02:00
parent 53ecaab976
commit 7d8018a29c
No known key found for this signature in database
GPG Key ID: 683D2F43B0CA4BD2
2 changed files with 7 additions and 5 deletions

BIN
src/icons/KShare.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -6,7 +6,7 @@
QT += core gui network widgets svg
TARGET = KShare
TARGET = kshare
TEMPLATE = app
CONFIG += c++11 thread
@ -161,10 +161,12 @@ mac {
QT += x11extras
LIBS += -lxcb-cursor -lxcb-xfixes -lxcb
target.path = /usr/bin/kshare
icon.files = $$PWD/icons/icon.png
icon.target = /usr/share/pixmaps/KShare.png
INSTALLS += target icon
target.path = bin/
icon.files = $$PWD/icons/KShare.png
icon.path = share/pixmaps/
desktop.files = $$PWD/../KShare.desktop
desktop.path = share/applications/
INSTALLS += target icon desktop
} else {
error(Unsupported platform);
}