summaryrefslogtreecommitdiffstats
path: root/sigbattle
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-10 19:26:19 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-10 19:26:19 +0000
commit6419faef1ce7418cf05c29f17e801a8de3151925 (patch)
tree8a1362712d18f2a692c3ee075ace7e36bd7f8dee /sigbattle
parent08040a630b6aed8b88246f3ba3ee85d5f7bd3afb (diff)
downloadsigen-6419faef1ce7418cf05c29f17e801a8de3151925.tar.gz
sigen-6419faef1ce7418cf05c29f17e801a8de3151925.tar.xz
sigen-6419faef1ce7418cf05c29f17e801a8de3151925.zip
[ADD] Added qmake back for Windows builds
[ADD] Added NSIS script for Windows installer git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@259 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigbattle')
-rw-r--r--sigbattle/sigbattle.pro46
1 files changed, 46 insertions, 0 deletions
diff --git a/sigbattle/sigbattle.pro b/sigbattle/sigbattle.pro
new file mode 100644
index 00000000..ed844839
--- /dev/null
+++ b/sigbattle/sigbattle.pro
@@ -0,0 +1,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)