QuakeGod
2023-05-30 acd576fbf6ca6086455d7f82140dd495237c6803
提交 | 用户 | age
d3687b 1 QT       += core gui
Q 2 QT += charts
3 QT += sql
4 QT += texttospeech
5
6 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
7
8 CONFIG += c++11
9
10 # The following define makes your compiler emit warnings if you use
11 # any Qt feature that has been marked deprecated (the exact warnings
12 # depend on your compiler). Please consult the documentation of the
13 # deprecated API in order to know how to port your code away from it.
14 DEFINES += QT_DEPRECATED_WARNINGS
15
16 # You can also make your code fail to compile if it uses deprecated APIs.
17 # In order to do so, uncomment the following line.
18 # You can also select to disable deprecated APIs only up to a certain version of Qt.
19 #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
20
21 SOURCES += \
22     dialogconfig.cpp \
23     dialogscence1.cpp \
24     dialogscence2.cpp \
25     dialogscence3.cpp \
26     main.cpp \
27     mainwindow.cpp \
28     myHMIdisplay.cpp \
29     mytimedisplay.cpp \
30     qmyroundindicator.cpp \
31     qmyroundprogress.cpp \
32     qmytimedisplay.cpp
33
34 HEADERS += \
35     dialogconfig.h \
36     dialogscence1.h \
37     dialogscence2.h \
38     dialogscence3.h \
39     mainwindow.h \
40     myHMIdisplay.h \
41     mytimedisplay.h \
42     qmyroundindicator.h \
43     qmyroundprogress.h \
44     qmytimedisplay.h
45
46 FORMS += \
47     dialogconfig.ui \
48     dialogscence1.ui \
49     dialogscence2.ui \
50     dialogscence3.ui \
51     mainwindow.ui
52
53 # Default rules for deployment.
54 qnx: target.path = /tmp/$${TARGET}/bin
55 else: unix:!android: target.path = /opt/$${TARGET}/bin
56 !isEmpty(target.path): INSTALLS += target
57
58 RC_FILE = res.rc
59
60 RESOURCES += \
61     resource.qrc
acd576 62
Q 63 DISTFILES += \
64     README.md