-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutracker.pro
More file actions
111 lines (102 loc) · 3.33 KB
/
utracker.pro
File metadata and controls
111 lines (102 loc) · 3.33 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#-------------------------------------------------
#
# Project created by QtCreator 2011-04-05T19:50:01
#
#-------------------------------------------------
QT += core gui network xml
TARGET = utracker
TEMPLATE = app
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/logindialog.cpp \
src/unfuddleapiwrapper.cpp \
src/mainuiwidget.cpp \
src/unfuddledata.cpp \
src/screensnap/property.cpp \
src/screensnap/urcommands/urcommands.cpp \
src/screensnap/objectscontrol/graphicsitemcreator.cpp \
src/screensnap/objectscontrol/objectseditor.cpp \
src/screensnap/objectscontrol/graphicsitemeditor.cpp \
src/screensnap/objectscontrol/graphicsutility.cpp \
src/screensnap/objectscontrol/graphicstextedit.cpp \
src/screensnap/editor/screensnapeditor.cpp \
src/screensnap/dialog/screensnapdialog.cpp \
src/screensnap/screensnap.cpp \
src/screensnap/primitives.cpp \
src/application.cpp \
src/applicationfactory.cpp \
src/preferencesdialog.cpp \
src/labeledlineedit.cpp \
src/qanimationlabel.cpp \
src/labeledplaintextedit.cpp \
src/choosemultiplefileswidget.cpp \
src/choosemultiplefilesentrywidget.cpp \
src/noscrolltextedit.cpp \
src/mystatusbar.cpp \
src/globalshortcut.cpp \
src/oneinstance.cpp \
src/autorun/autorunimp.cpp \
src/autorun/autorun.cpp
HEADERS += src/mainwindow.h \
src/logindialog.h \
src/unfuddleapiwrapper.h \
src/mainuiwidget.h \
src/unfuddledata.h \
src/screensnap/property.h \
src/screensnap/urcommands/urcommands.h \
src/screensnap/objectscontrol/graphicsitemcreator.h \
src/screensnap/objectscontrol/objectseditor.h \
src/screensnap/objectscontrol/graphicsitemeditor.h \
src/screensnap/objectscontrol/graphicsutility.h \
src/screensnap/objectscontrol/graphicstextedit.h \
src/screensnap/editor/screensnapeditor.h \
src/screensnap/dialog/screensnapdialog.h \
src/screensnap/screensnap.h \
src/screensnap/primitives.h \
src/screensnap/metatypetextdocument.h \
src/application.h \
src/applicationfactory.h \
src/preferencesdialog.h \
src/labeledlineedit.h \
src/qanimationlabel.h \
src/labeledplaintextedit.h \
src/choosemultiplefileswidget.h \
src/choosemultiplefilesentrywidget.h \
src/noscrolltextedit.h \
src/mystatusbar.h \
src/globalshortcut.h \
src/settingskeys.h \
src/oneinstance.h \
src/autorun/macautorun.h \
src/autorun/autorunimp.h \
src/autorun/autorun.h
FORMS += \
src/logindialog.ui \
src/mainuiwidget.ui \
src/screensnap/editor/screensnapeditor.ui \
src/screensnap/dialog/screensnapdialog.ui \
src/preferencesdialog.ui \
src/aboutdialog.ui
RESOURCES += \
resources/resources.qrc
INCLUDEPATH += src/
mac {
HEADERS += src/macapplication.h \
src/autorun/macautorun.h
OBJECTIVE_SOURCES += src/macapplication.mm
LIBS += -framework Cocoa -framework Carbon
SOURCES += src/globalshortcut_mac.cpp \
src/autorun/macautorun.cpp
ICON = resources/mac/icon.icns
}
win32 {
RC_FILE = resources/win/icon.rc
HEADERS += src/autorun/winautorun.h
SOURCES += src/globalshortcut_win.cpp \
src/autorun/winautorun.cpp
}
unix:!macx {
HEADERS += src/autorun/x11autorun.h
SOURCES += src/globalshortcut_x11.cpp \
src/autorun/x11autorun.cpp
}