Skip to content

Commit

Permalink
更新文档
Browse files Browse the repository at this point in the history
  • Loading branch information
feiyangqingyun committed Mar 16, 2024
1 parent 9cda550 commit d1cd616
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
10 changes: 5 additions & 5 deletions docs/video_system/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions other/dbpage/dbpage.pro
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
19 changes: 12 additions & 7 deletions tool/3rd_qextserialport/3rd_qextserialport.pri
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit d1cd616

Please sign in to comment.