toruschess/src/src.pro

37 lines
482 B
Prolog
Raw Normal View History

2009-01-06 13:52:03 +00:00
SOURCES += main.cpp \
testgame.cpp \
2009-01-09 11:44:39 +00:00
toruschess.cpp \
field2d.cpp \
2009-01-09 22:39:22 +00:00
piecelibrary.cpp \
2009-01-21 15:45:17 +00:00
field3d.cpp \
ai.cpp \
optiondlg.cpp
2009-01-06 13:52:03 +00:00
TEMPLATE = app
CONFIG += warn_on \
thread \
qt \
opengl \
debug
2009-01-06 13:52:03 +00:00
TARGET = toruschess
DESTDIR = ../bin
RESOURCES += media.qrc
QT += svg \
opengl
HEADERS += testgame.h \
2009-01-09 11:44:39 +00:00
toruschess.h \
field2d.h \
2009-01-09 22:39:22 +00:00
piecelibrary.h \
2009-01-21 15:45:17 +00:00
field3d.h \
ai.h \
optiondlg.h
2009-01-13 13:57:44 +00:00
LIBS += -l3ds
2009-01-21 15:45:17 +00:00
QMAKE_CXXFLAGS_RELEASE += -g
CONFIG -= release
FORMS += optiondlg.ui