-
Notifications
You must be signed in to change notification settings - Fork 0
/
tomatotasktracker-desktop-sources.pri
94 lines (77 loc) · 5.01 KB
/
tomatotasktracker-desktop-sources.pri
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
INCLUDEPATH += \
$$PWD/src \
HEADERS += \
$$PWD/src/aboutdialog.h \
$$PWD/src/consts.h \
$$PWD/src/getopenfilenamewidget.h \
$$PWD/src/mainwindow.h \
$$PWD/src/playsound.h \
$$PWD/src/project.h \
$$PWD/src/projectxml.h \
$$PWD/src/propertiesdialog.h \
$$PWD/src/resources.h \
$$PWD/src/settingsdialog.h \
$$PWD/src/settings.h \
$$PWD/src/taskdata.h \
$$PWD/src/taskeditdialog.h \
$$PWD/src/taskitemfilterproxymodel.h \
$$PWD/src/taskitem.h \
$$PWD/src/taskitemmodel.h \
$$PWD/src/taskmanager.h \
$$PWD/src/tasktimeeditdialog.h \
$$PWD/src/tasktime.h \
$$PWD/src/theme.h \
$$PWD/src/timestr.h \
$$PWD/src/tomato.h \
$$PWD/src/version.h \
SOURCES += \
$$PWD/src/aboutdialog.cpp \
$$PWD/src/getopenfilenamewidget.cpp \
$$PWD/src/mainwindow.cpp \
$$PWD/src/playsound.cpp \
$$PWD/src/project.cpp \
$$PWD/src/projectxml.cpp \
$$PWD/src/propertiesdialog.cpp \
$$PWD/src/resources.cpp \
$$PWD/src/settings.cpp \
$$PWD/src/settingsdialog.cpp \
$$PWD/src/taskdata.cpp \
$$PWD/src/taskeditdialog.cpp \
$$PWD/src/taskitem.cpp \
$$PWD/src/taskitemfilterproxymodel.cpp \
$$PWD/src/taskitemmodel.cpp \
$$PWD/src/taskmanager.cpp \
$$PWD/src/tasktime.cpp \
$$PWD/src/tasktimeeditdialog.cpp \
$$PWD/src/theme.cpp \
$$PWD/src/timestr.cpp \
$$PWD/src/tomato.cpp \
$$PWD/src/version.cpp \
FORMS += \
$$PWD/src/aboutdialog.ui \
$$PWD/src/propertiesdialog.ui \
$$PWD/src/taskeditdialog.ui \
$$PWD/src/tasktimeeditdialog.ui \
TRANSLATIONS += \
$$PWD/translations/ru.ts \
RESOURCES += \
OTHER_FILES += \
$$PWD/ABOUT \
$$PWD/AUTHORS \
$$PWD/CHANGELOG \
$$PWD/LIBRARIES \
$$PWD/LICENSE \
$$PWD/LICENSE.GPL-3+ \
$$PWD/README.md \
$$PWD/translations/docs/ABOUT_ru \
$$PWD/translations/docs/AUTHORS_ru \
$$PWD/translations/docs/CHANGELOG_ru \
$$PWD/translations/docs/LIBRARIES_ru \
!contains(QT, testlib) {
HEADERS += \
SOURCES += \
$$PWD/src/main.cpp \
}
win32 {
RC_FILE += res/windows/rc.rc
}