Files
pokerth/pokerth.pro
T

124 lines
3.8 KiB
Prolog
Raw Normal View History

2007-01-13 02:40:33 +00:00
# Diese Datei wurde mit dem qmake-Manager von KDevelop erstellt.
# -------------------------------------------
# Unterordner relativ zum Projektordner: .
# Das Target ist eine Anwendung: bin/pokerth
INSTALLS += TARGET
TARGET.files += bin/*
TARGET.path = /usr/bin/
FORMS += mainwindow.ui \
aboutpokerth.ui \
2007-01-17 01:22:55 +00:00
newgamedialog.ui \
2007-02-15 00:57:04 +00:00
settingsdialog.ui \
2007-02-17 19:36:32 +00:00
joinnetworkgamedialog.ui \
connecttoserverdialog.ui
2007-01-21 00:14:35 +00:00
HEADERS += tinystr.h \
2007-01-24 19:48:52 +00:00
tinyxml.h \
mainwindowimpl.h \
2007-01-13 02:40:33 +00:00
newgamedialogimpl.h \
aboutpokerthimpl.h \
2007-01-24 19:48:52 +00:00
settingsdialogimpl.h \
joinnetworkgamedialogimpl.h \
connecttoserverdialogimpl.h \
2007-01-24 19:48:52 +00:00
configfile.h \
2007-01-31 22:50:16 +00:00
log.h \
2007-01-13 02:40:33 +00:00
guiinterface.h \
guiwrapper.h \
2007-01-24 19:48:52 +00:00
session.h \
2007-01-13 02:40:33 +00:00
game.h \
2007-01-24 19:48:52 +00:00
localhand.h \
2007-01-13 02:40:33 +00:00
localboard.h \
localplayer.h \
cardsvalue.h \
localpreflop.h \
localflop.h \
localturn.h \
localriver.h \
tools.h \
2007-01-24 19:48:52 +00:00
handinterface.h \
2007-01-13 02:40:33 +00:00
playerinterface.h \
boardinterface.h \
preflopinterface.h \
flopinterface.h \
turninterface.h \
2007-01-13 19:10:35 +00:00
riverinterface.h \
2007-01-24 19:48:52 +00:00
enginefactory.h \
localenginefactory.h \
2007-01-28 01:28:19 +00:00
startsplash.h \
2007-02-17 23:58:42 +00:00
mycardspixmaplabel.h \
clientdata.h \
clientstate.h \
clientthread.h \
genericsocket.h \
socket_helper.h \
socket_msg.h \
2007-02-18 00:51:40 +00:00
socket_startup.h \
thread.h
2007-01-13 02:40:33 +00:00
SOURCES += pokerth.cpp \
2007-01-24 19:48:52 +00:00
tinystr.cpp \
tinyxml.cpp \
2007-01-21 00:14:35 +00:00
tinyxmlerror.cpp \
tinyxmlparser.cpp \
2007-01-24 19:48:52 +00:00
mainwindowimpl.cpp \
2007-01-13 02:40:33 +00:00
newgamedialogimpl.cpp \
aboutpokerthimpl.cpp \
2007-01-24 19:48:52 +00:00
settingsdialogimpl.cpp \
joinnetworkgamedialogimpl.cpp \
connecttoserverdialogimpl.cpp \
2007-01-24 19:48:52 +00:00
configfile.cpp \
2007-01-31 22:50:16 +00:00
log.cpp \
2007-01-13 02:40:33 +00:00
guiinterface.cpp \
guiwrapper.cpp \
2007-01-24 19:48:52 +00:00
session.cpp \
2007-01-13 02:40:33 +00:00
game.cpp \
2007-01-24 19:48:52 +00:00
localhand.cpp \
2007-01-13 02:40:33 +00:00
localboard.cpp \
localplayer.cpp \
cardsvalue.cpp \
localpreflop.cpp \
localflop.cpp \
localturn.cpp \
localriver.cpp \
tools.cpp \
2007-01-24 19:48:52 +00:00
handinterface.cpp \
2007-01-13 02:40:33 +00:00
playerinterface.cpp \
boardinterface.cpp \
preflopinterface.cpp \
flopinterface.cpp \
turninterface.cpp \
2007-01-13 19:10:35 +00:00
riverinterface.cpp \
2007-01-24 19:48:52 +00:00
enginefactory.cpp \
localenginefactory.cpp \
2007-01-28 01:28:19 +00:00
startsplash.cpp \
2007-02-17 23:58:42 +00:00
mycardspixmaplabel.cpp \
socket_helper.cpp \
socket_startup.cpp \
clientstate.cpp \
clientthread.cpp \
clientdata.cpp \
clientcallback.cpp \
2007-02-18 00:51:40 +00:00
socket_helper_cmn.cpp \
thread.cpp
2007-01-24 19:48:52 +00:00
TEMPLATE = vcapp
2007-01-14 13:38:26 +00:00
RESOURCES = src/gui/qt/deck.qrc
2007-01-13 02:40:33 +00:00
TEMPLATE = app
DEPENDPATH += . src uics src/config src/config/tinyxml src/gui src/gui/qt src/gui/qt/mainwindow/startsplash src/gui/qt/mainwindow src/gui/qt/aboutpokerth src/gui/qt/joinnetworkgamedialog src/gui/qt/connecttoserverdialog src/gui/qt/newlocalgamedialog src/gui/qt/settingsdialog src/gui/qt/log src/engine src/engine/local_engine src/net src/net/common src/core/
INCLUDEPATH += . src uics src/config src/config/tinyxml src/gui src/gui/qt src/gui/qt/mainwindow/startsplash src/gui/qt/mainwindow src/gui/qt/aboutpokerth src/gui/qt/joinnetworkgamedialog src/gui/qt/connecttoserverdialog src/gui/qt/newlocalgamedialog src/gui/qt/settingsdialog src/gui/qt/log src/engine src/engine/local_engine src/net src/net/common src/core/
win32 {
DEPENDPATH += src/net/win32/
INCLUDEPATH += ../boost/
LIBPATH += ../boost/stage/lib
LIBS += ws2_32.lib
}
!win32 {
DEPENDPATH += src/net/linux/
LIBS += -lboost_thread-mt
}
2007-01-13 02:40:33 +00:00
CONFIG += qt release
UI_DIR = uics
TARGET = bin/pokerth
MOC_DIR = mocs
OBJECTS_DIR = obj
2007-01-31 22:50:16 +00:00
QT +=