-
Notifications
You must be signed in to change notification settings - Fork 0
/
NaSch-Model.pro
60 lines (49 loc) · 1.14 KB
/
NaSch-Model.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
QT += core gui widgets
# measure time of calculation while autogenerating in microseconds and output the result on the console
DEFINES += ENABLE_CALC_TIME_MEASUREMENT
# measure time of drawing cells in microseconds and output the result on the console
DEFINES += ENABLE_DRAW_TIME_MEASUREMENT
# enable charts
DEFINES += CREATE_CHARTS
contains(DEFINES, CREATE_CHARTS): QT += charts
TARGET = nasch-model
TEMPLATE = app
CONFIG += c++14
DEFINES += QT_DEPRECATED_WARNINGS
gcc: LIBS += -lstdc++fs
SOURCES += \
main.cpp \
mainwindow.cpp \
car_system.cpp \
configuration.cpp \
streetwidget.cpp \
preferenceswidget.cpp \
core.cpp \
toolwidget.cpp \
helpwidget.cpp \
graphiccore.cpp \
graphicconfiguration.cpp \
startupdialog.cpp \
infowidget.cpp \
chartwidget.cpp \
caritem.cpp
HEADERS += \
mainwindow.h \
car_system.h \
configuration.h \
streetwidget.h \
preferenceswidget.h \
running_configuration.h \
core.h \
toolwidget.h \
helpwidget.h \
graphiccore.h \
graphicconfiguration.h \
startupdialog.h \
infowidget.h \
chartwidget.h \
caritem.h
RESOURCES += \
resources.qrc
TRANSLATIONS += \
nasch_de.ts