1
|
#-------------------------------------------------
|
2
|
#
|
3
|
# Project created by QtCreator 2017-12-13T18:45:44
|
4
|
#
|
5
|
#-------------------------------------------------
|
6
|
|
7
|
QT += core gui serialbus opengl charts sql network
|
8
|
|
9
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
10
|
|
11
|
QMAKE_CXXFLAGS += -std=c++11
|
12
|
|
13
|
TARGET = modbusSlave
|
14
|
TEMPLATE = app
|
15
|
|
16
|
# The following define makes your compiler emit warnings if you use
|
17
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
18
|
# depend on your compiler). Please consult the documentation of the
|
19
|
# deprecated API in order to know how to port your code away from it.
|
20
|
DEFINES += QT_DEPRECATED_WARNINGS
|
21
|
|
22
|
# You can also make your code fail to compile if you use deprecated APIs.
|
23
|
# In order to do so, uncomment the following line.
|
24
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
25
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
26
|
|
27
|
include(libQsLog/QsLog.pri)
|
28
|
|
29
|
win32 {
|
30
|
LIBS += -lopengl32
|
31
|
}
|
32
|
|
33
|
SOURCES += \
|
34
|
curvedataserver.cpp \
|
35
|
main.cpp \
|
36
|
mainwindow.cpp \
|
37
|
curvedialog.cpp \
|
38
|
element/arrow.cpp \
|
39
|
element/element.cpp \
|
40
|
element/sphere.cpp \
|
41
|
element/trajectory.cpp \
|
42
|
element/wall.cpp \
|
43
|
gl/camera.cpp \
|
44
|
gl/scene.cpp \
|
45
|
../db_browser/dbaccess.cpp \
|
46
|
infodialog.cpp \
|
47
|
selectpatientdlg.cpp
|
48
|
|
49
|
HEADERS += \
|
50
|
curvedataserver.h \
|
51
|
mainwindow.h \
|
52
|
curvedialog.h \
|
53
|
element/arrow.hpp \
|
54
|
element/element.hpp \
|
55
|
element/sphere.hpp \
|
56
|
element/trajectory.hpp \
|
57
|
element/wall.hpp \
|
58
|
gl/camera.hpp \
|
59
|
gl/scene.hpp \
|
60
|
../db_browser/dbaccess.h \
|
61
|
infodialog.h \
|
62
|
selectpatientdlg.h
|
63
|
|
64
|
FORMS += \
|
65
|
mainwindow.ui \
|
66
|
curvedialog.ui \
|
67
|
infodialog.ui \
|
68
|
selectpatientdlg.ui
|
69
|
|
70
|
RESOURCES += \
|
71
|
resources.qrc
|
72
|
|
73
|
DISTFILES += \
|
74
|
glsl/shader.frag \
|
75
|
glsl/shader.vert
|