forked from withthelemons/kbang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kbang_client.pro
118 lines (117 loc) · 3.69 KB
/
kbang_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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
TEMPLATE = app
UI_DIR = uics/client
MOC_DIR = mocs/client
RCC_DIR = rccs/client
OBJECTS_DIR = obj/client
CONFIG += qt
CONFIG += release \
warn_on
QT += network xml multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
greaterThan(QT_MAJOR_VERSION, 4): DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x000000
RESOURCES += src/client/resources/client.qrc
INCLUDEPATH += src/client \
src/common
DEPENDPATH += src/common
# Input
HEADERS += src/client/gameloop.h \
src/client/connecttoserverdialog.h \
src/client/mainwindow.h \
src/client/serverconnection.h \
src/client/common.h \
src/client/joingamedialog.h \
src/client/logwidget.h \
src/client/chatwidget.h \
src/client/card.h \
src/client/opponentwidget.h \
src/client/game.h \
src/client/cardwidget.h \
src/client/creategamedialog.h \
src/client/playerwidget.h \
src/client/characterwidget.h \
src/client/cardpilewidget.h \
src/client/deckwidget.h \
src/client/cardpocket.h \
src/client/localplayerwidget.h \
src/client/cardlistwidget.h \
src/client/gameevent.h \
src/client/cardmovementevent.h \
src/client/gameeventqueue.h \
src/client/gameeventhandler.h \
src/client/gamecontextchangeevent.h \
src/client/gamesyncevent.h \
src/client/lifepointschangeevent.h \
src/client/cardactionswidget.h \
src/client/cardwidgetfactory.h \
src/client/gameactionmanager.h \
src/client/playerdiedevent.h \
src/client/playerevent.h \
src/client/graveyardwidget.h \
src/client/cardzoomwidget.h \
src/client/newserverdialog.h \
src/client/selectplayericonwidget.h \
src/client/gamemessageevent.h \
src/client/cardwidgetsizemanager.h \
src/client/aboutdialog.h
FORMS += src/client/connecttoserverdialog.ui \
src/client/mainwindow.ui \
src/client/joingamedialog.ui \
src/client/logwidget.ui \
src/client/chatwidget.ui \
src/client/opponentwidget.ui \
src/client/creategamedialog.ui \
src/client/localplayerwidget.ui \
src/client/newserverdialog.ui \
src/client/aboutdialog.ui
SOURCES += src/client/gameloop.cpp \
src/client/main.cpp \
src/client/connecttoserverdialog.cpp \
src/client/mainwindow.cpp \
src/client/serverconnection.cpp \
src/client/common.cpp \
src/client/joingamedialog.cpp \
src/client/logwidget.cpp \
src/client/chatwidget.cpp \
src/client/card.cpp \
src/client/opponentwidget.cpp \
src/client/game.cpp \
src/client/cardwidget.cpp \
src/client/creategamedialog.cpp \
src/client/playerwidget.cpp \
src/client/characterwidget.cpp \
src/client/cardpilewidget.cpp \
src/client/deckwidget.cpp \
src/client/localplayerwidget.cpp \
src/client/cardlistwidget.cpp \
src/client/gameevent.cpp \
src/client/cardmovementevent.cpp \
src/client/gameeventqueue.cpp \
src/client/gameeventhandler.cpp \
src/client/gamecontextchangeevent.cpp \
src/client/gamesyncevent.cpp \
src/client/lifepointschangeevent.cpp \
src/client/cardactionswidget.cpp \
src/client/cardwidgetfactory.cpp \
src/client/gameactionmanager.cpp \
src/client/cardpocket.cpp \
src/client/playerdiedevent.cpp \
src/client/playerevent.cpp \
src/client/graveyardwidget.cpp \
src/client/cardzoomwidget.cpp \
src/client/newserverdialog.cpp \
src/client/selectplayericonwidget.cpp \
src/client/gamemessageevent.cpp \
src/client/cardwidgetsizemanager.cpp \
src/client/aboutdialog.cpp
unix {
LIBPATH += lib
TARGETDEPS += lib/libkbang_common.a
}
win32 {
RC_FILE = kbang_client.rc
debug:LIBPATH += debug/lib
release:LIBPATH += release/lib
}
LIBS += -lkbang_common
TARGET = kbang-client
QMAKE_CXXFLAGS_DEBUG += -Wall