1 Star 24 Fork 8

icybee/TexasSolver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TexasSolverGui.pro 5.52 KB
一键复制 编辑 原始数据 按行查看 历史
bupticybee 提交于 2021-10-28 09:42 . :new:finish setting ui
#-------------------------------------------------
#
# Project created by QtCreator 2021-09-18T11:22:44
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = TexasSolverGui
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
TRANSLATIONS = lang_cn.ts\
lang_en.ts
macx: {
QMAKE_CXXFLAGS += -Xpreprocessor -fopenmp -lomp -I/usr/local/include
}
macx: {
QMAKE_LFLAGS += -lomp
}
macx: {
LIBS += -L /usr/local/lib /usr/local/lib/libomp.dylib
ICON = imgs/texassolver_logo.icns
}
win32: {
QMAKE_CXXFLAGS+= -openmp
QMAKE_LFLAGS += -openmp
RC_ICONS = imgs/texassolver_logo.ico
}
win64: {
QMAKE_CXXFLAGS+= -openmp
QMAKE_LFLAGS += -openmp
RC_ICONS = imgs/texassolver_logo.ico
}
QMAKE_CXXFLAGS_RELEASE *= -O2
QMAKE_LFLAGS += -v
SOURCES += \
main.cpp \
mainwindow.cpp \
src/Deck.cpp \
src/Card.cpp \
src/console.cpp \
src/GameTree.cpp \
src/library.cpp \
src/compairer/Dic5Compairer.cpp \
src/experimental/TCfrSolver.cpp \
src/nodes/ActionNode.cpp \
src/nodes/ChanceNode.cpp \
src/nodes/GameActions.cpp \
src/nodes/GameTreeNode.cpp \
src/nodes/ShowdownNode.cpp \
src/nodes/TerminalNode.cpp \
src/pybind/bindSolver.cpp \
src/ranges/PrivateCards.cpp \
src/ranges/PrivateCardsManager.cpp \
src/ranges/RiverCombs.cpp \
src/ranges/RiverRangeManager.cpp \
src/runtime/PokerSolver.cpp \
src/solver/BestResponse.cpp \
src/solver/CfrSolver.cpp \
src/solver/PCfrSolver.cpp \
src/solver/Solver.cpp \
src/tools/CommandLineTool.cpp \
src/tools/GameTreeBuildingSettings.cpp \
src/tools/lookup8.cpp \
src/tools/PrivateRangeConverter.cpp \
src/tools/progressbar.cpp \
src/tools/Rule.cpp \
src/tools/StreetSetting.cpp \
src/tools/utils.cpp \
src/trainable/CfrPlusTrainable.cpp \
src/trainable/DiscountedCfrTrainable.cpp \
src/trainable/Trainable.cpp \
src/runtime/qsolverjob.cpp \
qstextedit.cpp \
strategyexplorer.cpp \
qstreeview.cpp \
src/ui/treeitem.cpp \
src/ui/treemodel.cpp \
htmltableview.cpp \
src/ui/worditemdelegate.cpp \
src/ui/tablestrategymodel.cpp \
src/ui/strategyitemdelegate.cpp \
src/ui/detailwindowsetting.cpp \
src/ui/detailviewermodel.cpp \
src/ui/detailitemdelegate.cpp \
src/ui/roughstrategyviewermodel.cpp \
src/ui/roughstrategyitemdelegate.cpp \
src/ui/droptextedit.cpp \
src/ui/htmltablerangeview.cpp \
rangeselector.cpp \
src/ui/rangeselectortablemodel.cpp \
src/ui/rangeselectortabledelegate.cpp \
boardselector.cpp \
src/ui/boardselectortablemodel.cpp \
src/ui/boardselectortabledelegate.cpp \
settingeditor.cpp
HEADERS += \
mainwindow.h \
include/Card.h \
include/GameTree.h \
include/Deck.h \
include/json.hpp \
include/library.h \
include/solver/PCfrSolver.h \
include/solver/Solver.h \
include/solver/BestResponse.h \
include/solver/CfrSolver.h \
include/tools/argparse.hpp \
include/tools/CommandLineTool.h \
include/tools/utils.h \
include/tools/GameTreeBuildingSettings.h \
include/tools/Rule.h \
include/tools/StreetSetting.h \
include/tools/lookup8.h \
include/tools/PrivateRangeConverter.h \
include/tools/progressbar.h \
include/runtime/PokerSolver.h \
include/trainable/CfrPlusTrainable.h \
include/trainable/DiscountedCfrTrainable.h \
include/trainable/Trainable.h \
include/compairer/Compairer.h \
include/compairer/Dic5Compairer.h \
include/experimental/TCfrSolver.h \
include/nodes/ActionNode.h \
include/nodes/ChanceNode.h \
include/nodes/GameActions.h \
include/nodes/GameTreeNode.h \
include/nodes/ShowdownNode.h \
include/nodes/TerminalNode.h \
include/ranges/PrivateCards.h \
include/ranges/PrivateCardsManager.h \
include/ranges/RiverCombs.h \
include/ranges/RiverRangeManager.h \
include/tools/tinyformat.h \
include/tools/qdebugstream.h \
include/runtime/qsolverjob.h \
qstextedit.h \
strategyexplorer.h \
qstreeview.h \
include/ui/treeitem.h \
include/ui/treemodel.h \
htmltableview.h \
include/ui/worditemdelegate.h \
include/ui/tablestrategymodel.h \
include/ui/strategyitemdelegate.h \
include/ui/detailwindowsetting.h \
include/ui/detailviewermodel.h \
include/ui/detailitemdelegate.h \
include/ui/roughstrategyviewermodel.h \
include/ui/roughstrategyitemdelegate.h \
include/ui/droptextedit.h \
include/ui/htmltablerangeview.h \
rangeselector.h \
include/ui/rangeselectortablemodel.h \
include/ui/rangeselectortabledelegate.h \
boardselector.h \
include/ui/boardselectortablemodel.h \
include/ui/boardselectortabledelegate.h \
settingeditor.h
FORMS += \
mainwindow.ui \
strategyexplorer.ui \
rangeselector.ui \
boardselector.ui \
settingeditor.ui
RESOURCES += \
translations.qrc \
compairer.qrc
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/icybee/TexasSolver.git
git@gitee.com:icybee/TexasSolver.git
icybee
TexasSolver
TexasSolver
master

搜索帮助