-
Notifications
You must be signed in to change notification settings - Fork 0
/
pong-client.pro
42 lines (35 loc) · 908 Bytes
/
pong-client.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
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = pong-client
TEMPLATE = app
DEPENDPATH += . headers src
INCLUDEPATH += . headers
UI_HEADERS_DIR += ui
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/renderlabel.cpp \
src/scene.cpp \
src/bat.cpp \
src/jobcannotbedone.cpp \
src/arena.cpp \
src/mathutils.cpp \
src/serveurcommunicator.cpp \
src/GameState.cpp \
src/Lockable.cpp \
src/serversync.cpp \
src/lobby.cpp
HEADERS += headers/mainwindow.h \
headers/renderlabel.h \
headers/scene.h \
headers/bat.h \
headers/jobcannotbedone.h \
headers/arena.h \
headers/mathutils.h \
headers/serveurcommunicator.h \
headers/GameState.hpp \
headers/PongTypes.hpp \
headers/Lockable.hpp \
headers/serversync.h \
headers/lobby.h
FORMS += ui/mainwindow.ui \
ui/lobby.ui