This repository was archived by the owner on Jan 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectOrientedProgramming.pro
More file actions
53 lines (48 loc) · 1.69 KB
/
Copy pathObjectOrientedProgramming.pro
File metadata and controls
53 lines (48 loc) · 1.69 KB
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
QT += widgets charts
TEMPLATE = app
TARGET = ObjectOrientedProgramming
INCLUDEPATH += include
RESOURCES += resources.qrc
DESTDIR = $$PWD/build
OBJECTS_DIR = $$PWD/build/obj
MOC_DIR = $$PWD/build/moc
UI_DIR = $$PWD/build/ui
RCC_DIR = $$PWD/build/rcc
DEFINES += QT_DISABLE_DEPRECATED_UP_TO=0x060000
HEADERS += include/building.h \
include/Chart.h \
include/elevator.h \
include/ElevatorShaft.h \
include/floor.h \
include/LineChart.h \
include/MainWindow.h \
include/monitor.h \
include/passenger.h \
include/statistics.h
SOURCES += src/building.cpp \
src/Chart.cpp \
src/elevator.cpp \
src/ElevatorShaft.cpp \
src/floor.cpp \
src/LineChart.cpp \
src/main.cpp \
src/MainWindow.cpp \
src/monitor.cpp \
src/passenger.cpp \
src/statistics.cpp
# CONFIG_PATH = $$OUT_PWD
# macx {
# CONFIG_PATH = $$OUT_PWD/$${TARGET}.app/Contents/MacOS
# }
# win32 {
# CONFIG_PATH = $$OUT_PWD
# }
# else {
# error("Unsupported operating system")
# }
#
# QMAKE_POST_LINK += mkdir -p $$shell_quote($$CONFIG_PATH) $$escape_expand(\\n\\t)
# QMAKE_POST_LINK += cp $$shell_quote($${PWD}/resources/data/config.json) $$shell_quote($$CONFIG_PATH/config.json) $$escape_expand(\\n\\t)
# QMAKE_POST_LINK += cp $$shell_quote($${PWD}/resources/data/data.json) $$shell_quote($$CONFIG_PATH/data.json) $$escape_expand(\\n\\t)
# QMAKE_POST_LINK += mkdir -p $$shell_quote($$CONFIG_PATH/images) $$escape_expand(\\n\\t)
# QMAKE_POST_LINK += cp $$shell_quote($${PWD}/resources/images/elevator.svg) $$shell_quote($$CONFIG_PATH/images/elevator.svg)