forked from linuxdeepin/deepin-shortcut-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeepin-shortcut-viewer.pro
55 lines (37 loc) · 920 Bytes
/
deepin-shortcut-viewer.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-27T09:14:07
#
#-------------------------------------------------
QT += core gui core network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11 link_pkgconfig
PKGCONFIG += dtkwidget dtkcore
DEFINES += QT_MESSAGELOGCONTEXT
isEmpty(TARGET) {
TARGET = deepin-shortcut-viewer
}
TEMPLATE = app
SOURCES += main.cpp\
view/mainwidget.cpp \
commandlinemanager.cpp \
singleapplication.cpp \
view/shortcutitem.cpp \
view/shortcutview.cpp
HEADERS += \
view/mainwidget.h \
commandlinemanager.h \
singleapplication.h \
view/shortcutitem.h \
view/shortcutview.h
SUBDIRS += \
QLogger/test/test.pro
DISTFILES += \
QLogger/LICENSE \
QLogger/README.md
isEmpty(PREFIX){
PREFIX = /usr
}
BINDIR = $$PREFIX/bin
target.path = $$BINDIR
INSTALLS += target