-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTimeTracker.pro
More file actions
82 lines (57 loc) · 1.34 KB
/
TimeTracker.pro
File metadata and controls
82 lines (57 loc) · 1.34 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
#-------------------------------------------------
#
# Project created by QtCreator 2011-04-27T08:49:56
#
#-------------------------------------------------
QT += core gui xml sql widgets
TARGET = TimeTracker
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
preferenceswidget.cpp \
projectwidget.cpp \
trayiconcommand.cpp \
preferences.cpp \
project.cpp \
timespan.cpp \
createprojectdialog.cpp \
screenshot.cpp \
genericdao.cpp \
debugutils.cpp \
timetrackerapp.cpp \
reportwidget.cpp \
clock.cpp \
projectitemdelegate.cpp \
projectitem.cpp \
prettydate.cpp
HEADERS += mainwindow.h \
preferenceswidget.h \
projectwidget.h \
trayiconcommand.h \
preferences.h \
project.h \
timespan.h \
createprojectdialog.h \
screenshot.h \
genericdao.h \
debugutils.h \
timetrackerapp.h \
reportwidget.h \
clock.h \
projectitemdelegate.h \
projectitem.h \
prettydate.h
FORMS += mainwindow.ui \
preferenceswidget.ui \
projectwidget.ui \
createprojectdialog.ui \
reportwidget.ui \
projectitem.ui
RESOURCES += \
res.qrc
win32 {
}
macx-g++{
ICON = images/timetracker.icns
}
win32:RC_FILE += TimeTracker.rc