修复了项目无法正常打开的BUG

This commit is contained in:
Art_Sakura 2025-07-24 04:36:59 +08:00
parent 0430307f4b
commit a1785277f3
13 changed files with 17 additions and 44 deletions

View File

@ -4,6 +4,3 @@ SUBDIRS += \
QGobangClient \ QGobangClient \
QGobangServer \ QGobangServer \
QGobangTool QGobangTool
QGobangClient.depends = QGobangTool
QGobangServer.depends = QGobangTool

Binary file not shown.

View File

@ -2,6 +2,7 @@ QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
DESTDIR = $$PWD
OBJECTS_DIR = $$PWD/../build/$$TARGET/obj OBJECTS_DIR = $$PWD/../build/$$TARGET/obj
MOC_DIR = $$PWD/../build/$$TARGET/moc MOC_DIR = $$PWD/../build/$$TARGET/moc
RCC_DIR = $$PWD/../build/$$TARGET/rcc RCC_DIR = $$PWD/../build/$$TARGET/rcc

View File

@ -1,5 +1,7 @@
#include <QApplication> #include <QApplication>
#include <QDebug>
#include "Ui/widget.h" #include "Ui/widget.h"
#include "CUiManager.h" #include "CUiManager.h"

View File

@ -10,6 +10,7 @@
***************************************************************/ ***************************************************************/
namespace NS_QGobangServer namespace NS_QGobangServer
{
class CServerManager class CServerManager
{ {
@ -24,4 +25,6 @@ private:
}; };
}
#endif // CSERVERMANAGER_H #endif // CSERVERMANAGER_H

Binary file not shown.

View File

@ -12,9 +12,10 @@ SOURCES += \
CServerManager.cpp \ CServerManager.cpp \
main.cpp main.cpp
HEADERS += \
CServerManager.h
# 引用QGobangTool库文件 # 引用QGobangTool库文件
INCLUDEPATH += ../QGobangTool/include INCLUDEPATH += ../QGobangTool/include
LIBS += -L$$OUT_PWD/../QGobangTool/lib -lQGobangTool LIBS += -L$$OUT_PWD/../QGobangTool/lib -lQGobangTool
HEADERS += \
CServerManager.h

View File

@ -4,16 +4,5 @@ int main(int argc, char *argv[])
{ {
QCoreApplication a(argc, argv); QCoreApplication a(argc, argv);
// Set up code that uses the Qt event loop here.
// Call a.quit() or a.exit() to quit the application.
// A not very useful example would be including
// #include <QTimer>
// near the top of the file and calling
// QTimer::singleShot(5000, &a, &QCoreApplication::quit);
// which quits the application after 5 seconds.
// If you do not need a running Qt event loop, remove the call
// to a.exec() or use the Non-Qt Plain C++ Application template.
return a.exec(); return a.exec();
} }

View File

@ -14,8 +14,7 @@ CONFIG += c++17 cmdline
CONFIG -= debug_and_release debug_and_release_target CONFIG -= debug_and_release debug_and_release_target
SOURCES += \ SOURCES += \
QGobangRule.cpp \ QGobangRule.cpp
main.cpp
HEADERS += \ HEADERS += \
QGobangRule.h QGobangRule.h

View File

@ -1,19 +0,0 @@
#include <QCoreApplication>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
// Set up code that uses the Qt event loop here.
// Call a.quit() or a.exit() to quit the application.
// A not very useful example would be including
// #include <QTimer>
// near the top of the file and calling
// QTimer::singleShot(5000, &a, &QCoreApplication::quit);
// which quits the application after 5 seconds.
// If you do not need a running Qt event loop, remove the call
// to a.exec() or use the Non-Qt Plain C++ Application template.
return a.exec();
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 MiB

After

Width:  |  Height:  |  Size: 171 KiB