更新文档

master
feiyangqingyun 2024-03-16 17:48:25 +08:00
parent 56968a4424
commit 66464c9be8
3 changed files with 18 additions and 12 deletions

File diff suppressed because one or more lines are too long

View File

@ -11,6 +11,7 @@ SOURCES += main.cpp
SOURCES += dbpage.cpp
SOURCES += frmdbpage.cpp
HEADERS += head.h
HEADERS += dbpage.h
HEADERS += frmdbpage.h
FORMS += frmdbpage.ui

View File

@ -1,9 +1,14 @@
HEADERS += \
$$PWD/qextserialport.h \
$$PWD/qextserialport_global.h \
$$PWD/qextserialport_p.h
#将当前目录加入到头文件路径
INCLUDEPATH += $$PWD
HEADERS += $$PWD/qextserialport.h
HEADERS += $$PWD/qextserialport_global.h
HEADERS += $$PWD/qextserialport_p.h
SOURCES += $$PWD/qextserialport.cpp
win32:SOURCES += $$PWD/qextserialport_win.cpp
unix:SOURCES += $$PWD/qextserialport_unix.cpp
win32 {
SOURCES += $$PWD/qextserialport_win.cpp
}
unix {
SOURCES += $$PWD/qextserialport_unix.cpp
}