Qt: 将 config.h 加入 Qt 工程
This commit is contained in:
parent
fe87db7666
commit
87ff9a3927
|
@ -1,58 +1,59 @@
|
|||
#-------------------------------------------------
|
||||
#
|
||||
# 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 += \
|
||||
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 \
|
||||
src/aithread.cpp
|
||||
|
||||
HEADERS += \
|
||||
src/boarditem.h \
|
||||
src/gamecontroller.h \
|
||||
src/gamescene.h \
|
||||
src/gameview.h \
|
||||
src/graphicsconst.h \
|
||||
src/ninechess.h \
|
||||
src/ninechessai_ab.h \
|
||||
src/ninechesswindow.h \
|
||||
src/pieceitem.h \
|
||||
src/manuallistview.h \
|
||||
src/aithread.h
|
||||
|
||||
FORMS += \
|
||||
ninechesswindow.ui
|
||||
|
||||
RESOURCES += \
|
||||
ninechesswindow.qrc
|
||||
|
||||
DISTFILES += \
|
||||
NineChess.rc \
|
||||
../Readme.md \
|
||||
../Sample.txt \
|
||||
../History.txt \
|
||||
../Licence.txt
|
||||
|
||||
RC_FILE += NineChess.rc
|
||||
#-------------------------------------------------
|
||||
#
|
||||
# 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 += \
|
||||
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 \
|
||||
src/aithread.cpp
|
||||
|
||||
HEADERS += \
|
||||
src/boarditem.h \
|
||||
src/config.h \
|
||||
src/gamecontroller.h \
|
||||
src/gamescene.h \
|
||||
src/gameview.h \
|
||||
src/graphicsconst.h \
|
||||
src/ninechess.h \
|
||||
src/ninechessai_ab.h \
|
||||
src/ninechesswindow.h \
|
||||
src/pieceitem.h \
|
||||
src/manuallistview.h \
|
||||
src/aithread.h
|
||||
|
||||
FORMS += \
|
||||
ninechesswindow.ui
|
||||
|
||||
RESOURCES += \
|
||||
ninechesswindow.qrc
|
||||
|
||||
DISTFILES += \
|
||||
NineChess.rc \
|
||||
../Readme.md \
|
||||
../Sample.txt \
|
||||
../History.txt \
|
||||
../Licence.txt
|
||||
|
||||
RC_FILE += NineChess.rc
|
||||
|
|
Loading…
Reference in New Issue