-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStockMarketGame.pro
66 lines (60 loc) · 1.6 KB
/
StockMarketGame.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
61
62
63
64
65
66
######################################################################
# Automatically generated by qmake (3.0) Mon Jul 8 07:35:53 2019
######################################################################
CONFIG += c++14
TEMPLATE = app
TARGET = StockMarketGame
INCLUDEPATH += .
# Input
QT += widgets printsupport
FORMS += \
UIComponents/GamerunUI.ui \
UIComponents/Graph.ui \
UIComponents/MainWindow.ui \
UIComponents/NewGameUI.ui
HEADERS += \
ADTs/BasicStock.h \
ADTs/Bond.h \
ADTs/Portfolio.h \
ADTs/Stock.h \
ADTs/StockManager.h \
ADTs/User.h \
ADTs/UserManager.h \
Exceptions/Exception.h \
libs/json.hpp \
libs/qcustomplot.h \
Managers/Decorator.h \
Managers/Gamerun.h \
Managers/GameStateBase.h \
Managers/GameStateManager.h \
Managers/LoadGameState.h \
Managers/NewGameState.h \
UIHandlers/GamerunUI.h \
UIHandlers/Graph.h \
UIHandlers/MainWindow.h \
UIHandlers/NewGameUI.h \
UIHandlers/Observer.h \
Managers/Subject.h
SOURCES += \
ADTs/BasicStock.cc \
ADTs/Bond.cc \
ADTs/Portfolio.cc \
ADTs/Stock.cc \
ADTs/StockManager.cc \
ADTs/User.cc \
ADTs/UserManager.cc \
Exceptions/Exception.cc \
libs/qcustomplot.cpp \
Managers/Decorator.cc \
Managers/Gamerun.cc \
Managers/GameStateBase.cc \
Managers/GameStateManager.cc \
Managers/LoadGameState.cc \
Managers/NewGameState.cc \
UIHandlers/GamerunUI.cc \
UIHandlers/Graph.cc \
UIHandlers/MainWindow.cc \
UIHandlers/NewGameUI.cc \
main.cc \
Managers/Subject.cc \
UIHandlers/Observer.cc