-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.pro
More file actions
49 lines (47 loc) · 1.53 KB
/
Copy pathinfo.pro
File metadata and controls
49 lines (47 loc) · 1.53 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
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
QT += network core testlib
OBJECTS_DIR = objects/
MOC_DIR = moc_dir/
DESTDIR = ./
QMAKE_CXXFLAGS += -Wshadow -g
# Input
HEADERS += src/core/type.h \
src/core/network/TcpServer.h \
src/core/network/UdpServer.h \
src/core/network/ServerList.h \
src/core/network/Server.h \
src/core/game/Game.h \
src/core/game/Brain.h \
src/core/game/GameSelector.h \
src/core/gui/MainWindow.h \
src/core/gui/ServerListWidget.h \
src/core/gui/PlayerConfigurationWindow.h \
src/core/gui/GameInfoWidget.h \
src/core/gui/ChatWidget.h \
src/games/checkers/BrainCheckers.h \
src/games/checkers/BoardController.h \
src/games/checkers/Direction.h \
src/games/checkers/Constants.h \
src/games/checkers/Image.h \
src/games/checkers/Checkers.h
SOURCES += src/core/main.cpp \
src/core/network/TcpServer.cpp \
src/core/network/UdpServer.cpp \
src/core/network/ServerList.cpp \
src/core/network/Server.cpp \
src/core/game/Game.cpp \
src/core/game/Brain.cpp \
src/core/game/GameSelector.cpp \
src/core/gui/MainWindow.cpp \
src/core/gui/ServerListWidget.cpp \
src/core/gui/PlayerConfigurationWindow.cpp \
src/core/gui/GameInfoWidget.cpp \
src/core/gui/ChatWidget.cpp \
src/games/checkers/BrainCheckers.cpp \
src/games/checkers/BoardController.cpp \
src/games/checkers/Direction.cpp \
src/games/checkers/Image.cpp \
src/games/checkers/Checkers.cpp