summaryrefslogtreecommitdiffstats
path: root/sigbattle/sigbattle.pro
blob: ed8448392a7bcdd8b87fcef6e3bf8474627f5f45 (plain)
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
include(../version.pri)
TEMPLATE = lib
OBJECTS_DIR = .obj
MOC_DIR = .moc
DOC_DIR = ../doc
DESTDIR = ../bin
INSTALLDIR = lib$$system(kde4-config --libsuffix)
LIBS += -L../bin \
 -lsigmod \
 -lsigscript \
 -lkrosscore

CONFIG += qt \
 warn_on \
 dll

DEFINES += MAKE_SIGBATTLE_LIB

include(../install.pri)
include(../kde4.pri)

SOURCES += Arena.cpp \
 ATBArena.cpp \
 ATBTimer.cpp \
 Containment.cpp \
 Ghost.cpp \
 Player.cpp \
 Team.cpp \
 TeamMember.cpp \
 TurnArena.cpp

HEADERS += ActionQueue.h \
 Arena.h \
 ATBArena.h \
 ATBTimer.h \
 Bot.h \
 Containment.h \
 GhostBot.h \
 Ghost.h \
 Global.h \
 Player.h \
 Team.h \
 TeamMember.h \
 TurnArena.h

include(../headers.pri)