-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGenius.pro
84 lines (72 loc) · 1.9 KB
/
Genius.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-16T21:13:05
#
#-------------------------------------------------
QT += core gui
CONFIG += c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Genius
TEMPLATE = app
win32 :RC_ICONS =genius.ico
SOURCES += main.cpp \
views/manager.cpp \
controllers/controller.cpp \
models/clipboardhistory.cpp \
views/trayicon.cpp \
tools/toolkit.cpp \
resources/resources.cpp \
controllers/gsettings.cpp \
views/selector.cpp \
controllers/fakekey.cpp \
views/settingswindow.cpp \
controllers/tempfolder.cpp \
models/filing/datafile.cpp \
models/clipboardentity.cpp \
views/contentviewer.cpp \
tools/rtimer.cpp \
models/filing/fragmentframe.cpp \
views/about.cpp \
views/license.cpp \
GUI/menuitem.cpp \
controllers/runguard.cpp \
GUI/menu.cpp \
views/help.cpp
HEADERS += \
views/manager.h \
controllers/controller.h \
models/clipboardhistory.h \
views/trayicon.h \
tools/toolkit.h \
resources/resources.h \
controllers/gsettings.h \
views/selector.h \
controllers/fakekey.h \
views/settingswindow.h \
controllers/tempfolder.h \
models/filing/datafile.h \
models/clipboardentity.h \
views/contentviewer.h \
tools/rtimer.h \
models/filing/fragmentframe.h \
views/about.h \
views/license.h \
GUI/menuitem.h \
controllers/runguard.h \
GUI/menu.h \
views/help.h
FORMS += \
views/manager.ui \
views/selector.ui \
views/settingswindow.ui \
views/contentviewer.ui \
views/about.ui \
views/license.ui \
views/help.ui
DISTFILES +=
RESOURCES += \
resources/resources.qrc
include(./plugins/QHotkey/qhotkey.pri)
mac {
LIBS += -framework ApplicationServices
}