-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathChineseChess.pro
executable file
·52 lines (42 loc) · 1.28 KB
/
ChineseChess.pro
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
47
48
49
50
51
#-------------------------------------------------
# Project created by QtCreator 2019-01-22T19:52:58
#
# 关于作者:
# 与子偕臧 [email protected]
# 项目完成时间:2019-02-01
# 其他:如果觉得该作品对你有用,或者有疑惑或者感谢,可以联系作者或者打赏;
# 对我的 star 和 fork 是最大鼓励;当然有人欢迎你提交在 github 提交 pr,
# 已将源码和思路开源公布于我的github和博客,供大家学习参考
#
# 联系作者:
# GitHub: https://github.com/XMuli
# Telegram: https://t.me/xmuli
# CSDN Bolg: https://blog.csdn.net/qq_33154343
# My Blog: https://ifmet.cn
#-------------------------------------------------
QT += core gui network multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ChineseChess
TEMPLATE = app
SOURCES += main.cpp\
ChessBoard.cpp \
ChessPieces.cpp \
ChessStep.cpp \
ChessVoice.cpp \
MachineGame.cpp \
NetworkGame.cpp \
ChooseMainWindow.cpp \
AboutAuthor.cpp
HEADERS += ChessBoard.h \
ChessPieces.h \
ChessStep.h \
ChessVoice.h \
MachineGame.h \
NetworkGame.h \
ChooseMainWindow.h \
AboutAuthor.h
FORMS += ChessBoard.ui \
AboutAuthor.ui
RESOURCES += \
chooseresource.qrc
RC_FILE = res.rc