-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQtCBM.pro
43 lines (35 loc) · 856 Bytes
/
QtCBM.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
QT += core gui charts
QT += widgets
CONFIG += c++1z
QMAKE_CXXFLAGS += -std=c++17
TARGET = QtCBM
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS \
QT_DISABLE_DEPRECATED_BEFORE=0x060000
SOURCES += \
src/main.cpp \
src/MainWindow.cpp \
src/Dot.cpp \
src/DotLabel.cpp \
src/Stimul.cpp \
src/TextStimul.cpp \
src/Cross.cpp \
src/CrossLabel.cpp \
src/DotProbe.cpp \
src/ProbeResult.cpp \
src/DotProber.cpp
HEADERS += \
src/MainWindow.h \
src/Dot.h \
src/DotLabel.h \
src/Stimul.h \
src/TextStimul.h \
src/Cross.h \
src/CrossLabel.h \
src/DotProbePhase.h \
src/DotProbe.h \
src/ProbeResult.h \
src/DotProber.h \
src/LayoutMode.h
FORMS += \
src/MainWindow.ui