-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMindViewer.pro
81 lines (69 loc) · 1.76 KB
/
MindViewer.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
#######################
### \author Jackey Lea
### \date 2020-12-26
### \brief 主程序
### \note Qt 6.8.1
### \note VS2022
#######################
QT += core gui widgets
QT += serialport
CONFIG += c++17
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
DESTDIR = ./bin/
OBJECTS_DIR = .obj
RCC_DIR = .rcc
MOC_DIR = .moc
UI_DIR = .ui
include(qwt.pri)
INCLUDEPATH += $$PWD/include
SOURCES += \
src/curve.cpp \
src/dataparser.cpp \
src/indicator.cpp \
src/localfile.cpp \
src/main.cpp \
src/mainwidget.cpp \
src/retriver.cpp \
src/simulator.cpp
HEADERS += \
include/curve.h \
include/dataparser.h \
include/icd.h \
include/indicator.h \
include/localfile.h \
include/mainwidget.h \
include/retriver.h \
include/simulator.h
FORMS += \
ui/mainwidget.ui \
ui/retriver.ui
RESOURCES += \
resource.qrc
####################
# 程序信息
####################
# 可执行文件名称
TARGET = MindViewer
# 版本信息
VERSION = 1.0.0
# 图标
RC_ICONS = resource/icon/mind.ico
# 公司名称
QMAKE_TARGET_COMPANY = "食铁兽"
# 产品名称
QMAKE_TARGET_PRODUCT = "MindViewer"
# 文件说明
QMAKE_TARGET_DESCRIPTION="Qt 6.8.1 (64bit) with MSVC 2022"
# 版权信息
QMAKE_TARGET_COPYRIGHT="Copyright 2020-2024 blog.jackeylea.com.All rights reserved."
# 语言 中文(简体)
RC_LANG = 0x0004
####################
# 程序信息结束
####################
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target