-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameDevClient.pro
More file actions
41 lines (38 loc) · 1.17 KB
/
GameDevClient.pro
File metadata and controls
41 lines (38 loc) · 1.17 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
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
include(sfml.pri)
SOURCES += \
main.cpp \
sources/application.cpp \
sources/connection/gateway.cpp \
sources/connection/packet.cpp \
sources/gui/component.cpp \
sources/gui/container.cpp \
sources/gui/label.cpp \
sources/gui/button.cpp \
sources/utility.cpp \
sources/states/statestack.cpp \
sources/states/state.cpp \
sources/states/connectionmenustate.cpp \
sources/states/mainmenustate.cpp \
sources/gui/textinput.cpp
HEADERS += \
headers/resourcemanagemebnt/resourceholder.hpp \
headers/resourcemanagement/resourceholder.inl \
headers/resourcemanagement/resourceidentifiers.hpp \
headers/application.hpp \
headers/connection/gateway.hpp \
headers/connection/packet.hpp \
headers/gui/component.hpp \
headers/gui/container.hpp \
headers/gui/label.hpp \
headers/gui/button.hpp \
headers/utility.hpp \
headers/states/statestack.hpp \
headers/states/state.hpp \
headers/states/stateidentifier.hpp \
headers/states/mainmenustate.hpp \
headers/states/connectionmenustate.hpp \
headers/gui/textinput.hpp