Sanmill/NineChess/ninechess.pro

70 lines
1.4 KiB
Prolog
Raw Normal View History

2019-07-12 23:02:29 +08:00
#-------------------------------------------------
#
# Project created by QtCreator 2015-11-03T22:30:34
#
#-------------------------------------------------
QT += core gui \
multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = NineChess
TEMPLATE = app
CONFIG += C++11 \
warn_off
INCLUDEPATH += src
SOURCES += \
2019-07-28 07:47:04 +08:00
src/client.cpp \
2019-07-12 23:02:29 +08:00
src/main.cpp \
src/boarditem.cpp \
src/gamecontroller.cpp \
src/gamescene.cpp \
src/gameview.cpp \
src/ninechess.cpp \
src/ninechessai_ab.cpp \
src/ninechesswindow.cpp \
src/pieceitem.cpp \
2019-07-28 07:47:04 +08:00
src/aithread.cpp \
src/server.cpp
2019-07-12 23:02:29 +08:00
HEADERS += \
2019-07-14 15:10:16 +08:00
src/HashNode.h \
src/MemoryPool.h \
src/MemoryPool.tcc \
2019-08-01 01:02:45 +08:00
src/StackAlloc.h \
2019-07-12 23:02:29 +08:00
src/boarditem.h \
2019-07-28 07:47:04 +08:00
src/client.h \
2019-07-12 23:02:29 +08:00
src/config.h \
src/gamecontroller.h \
src/gamescene.h \
src/gameview.h \
src/graphicsconst.h \
2019-07-14 11:04:51 +08:00
src/hashMap.h \
2019-07-12 23:02:29 +08:00
src/ninechess.h \
src/ninechessai_ab.h \
src/ninechesswindow.h \
src/pieceitem.h \
src/manuallistview.h \
src/aithread.h \
2019-07-28 07:47:04 +08:00
src/server.h \
src/zobrist.h
2019-07-12 23:02:29 +08:00
FORMS += \
ninechesswindow.ui
RESOURCES += \
ninechesswindow.qrc
DISTFILES += \
NineChess.rc \
../Readme.md \
../Sample.txt \
../History.txt \
../Licence.txt
RC_FILE += NineChess.rc