Projekt

Obecné

Profil

Stáhnout (1.79 KB) Statistiky
| Větev: | Tag: | Revize:
1 c137512e Oto Šťáva
#-------------------------------------------------
2
#
3
# Project created by QtCreator 2017-12-13T18:45:44
4
#
5
#-------------------------------------------------
6
7
QT       += core gui serialbus opengl charts sql
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
        main.cpp \
35
        mainwindow.cpp \
36
    curvedialog.cpp \
37
    element/arrow.cpp \
38
    element/element.cpp \
39
    element/sphere.cpp \
40
    element/trajectory.cpp \
41
    element/wall.cpp \
42
    gl/camera.cpp \
43
    gl/scene.cpp \
44
    ../db_browser/dbaccess.cpp \
45
    infodialog.cpp \
46
    selectpatientdlg.cpp
47
48
HEADERS += \
49
        mainwindow.h \
50
    curvedialog.h \
51
    element/arrow.hpp \
52
    element/element.hpp \
53
    element/sphere.hpp \
54
    element/trajectory.hpp \
55
    element/wall.hpp \
56
    gl/camera.hpp \
57
    gl/scene.hpp \
58
    ../db_browser/dbaccess.h \
59
    infodialog.h \
60
    selectpatientdlg.h
61
62
FORMS += \
63
        mainwindow.ui \
64
    curvedialog.ui \
65
    infodialog.ui \
66
    selectpatientdlg.ui
67
68
RESOURCES += \
69
    resources.qrc
70
71
DISTFILES += \
72
    glsl/shader.frag \
73
    glsl/shader.vert