-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtipp10.pro
87 lines (85 loc) · 2.71 KB
/
tipp10.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
85
86
87
TEMPLATE = app
TARGET = tipp10
DEPENDPATH += . def games sql widget
INCLUDEPATH += .
QT += gui
QT += core
QT += sql network
CONFIG += qt
CONFIG += console
QMAKE_CFLAGS = -fpermissive
QMAKE_CXXFLAGS = -fpermissive
QMAKE_LFLAGS = -fpermissive
# Input
HEADERS += def/defines.h \
def/errordefines.h \
games/abcrainwidget.h \
games/charball.h \
sql/chartablesql.h \
sql/connection.h \
sql/keyboardsql.h \
sql/lessontablesql.h \
sql/startsql.h \
sql/trainingsql.h \
widget/checkversion.h \
widget/companylogo.h \
widget/downloaddialog.h \
widget/errormessage.h \
widget/evaluationwidget.h \
widget/fingerwidget.h \
widget/helpbrowser.h \
widget/illustrationdialog.h \
widget/illustrationimage.h \
widget/keyboard.h \
widget/lessondialog.h \
widget/lessonprintdialog.h \
widget/lessonresult.h \
widget/licensedialog.h \
widget/mainwindow.h \
widget/numpad.h \
widget/progressionwidget.h \
widget/regexpdialog.h \
widget/settingsdialog.h \
widget/settingspages.h \
widget/startwidget.h \
widget/statusbar.h \
widget/tickerboard.h \
widget/trainingwidget.h \
widget/txtmessagedialog.h \
widget/updatedialog.h
SOURCES += main.cpp \
games/abcrainwidget.cpp \
games/charball.cpp \
sql/chartablesql.cpp \
sql/keyboardsql.cpp \
sql/lessontablesql.cpp \
sql/startsql.cpp \
sql/trainingsql.cpp \
widget/checkversion.cpp \
widget/companylogo.cpp \
widget/downloaddialog.cpp \
widget/errormessage.cpp \
widget/evaluationwidget.cpp \
widget/fingerwidget.cpp \
widget/helpbrowser.cpp \
widget/illustrationdialog.cpp \
widget/illustrationimage.cpp \
widget/keyboard.cpp \
widget/lessondialog.cpp \
widget/lessonprintdialog.cpp \
widget/lessonresult.cpp \
widget/licensedialog.cpp \
widget/mainwindow.cpp \
widget/numpad.cpp \
widget/progressionwidget.cpp \
widget/regexpdialog.cpp \
widget/settingsdialog.cpp \
widget/settingspages.cpp \
widget/startwidget.cpp \
widget/statusbar.cpp \
widget/tickerboard.cpp \
widget/trainingwidget.cpp \
widget/txtmessagedialog.cpp \
widget/updatedialog.cpp
RESOURCES += tipp10.qrc
TEMP_SOURCES = $$SOURCES