加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ComChange.pro 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
mahuifa 提交于 2022-03-27 15:45 . 修改bug:修改报错问题
#---------------------------------------------------------
# 功能: windows下串口、鼠标、键盘热插拔监测demo
# 编译器:
#
# @开发者 mhf
# @邮箱 1603291350@qq.com
# @时间 2022/03/27
# @备注
#---------------------------------------------------------
QT += core gui serialport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
comchange.cpp \
main.cpp \
mousekeytest.cpp \
porttest.cpp \
widget.cpp
HEADERS += \
comchange.h \ # 串口热插拔监测
mousekeytest.h \ # 鼠标、键盘热插拔监测
porttest.h \
widget.h
FORMS += \
mousekeytest.ui \
porttest.ui \
widget.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
contains(QT_ARCH, i386){ # 使用32位编译器
DESTDIR = $$PWD/../bin # 程序输出路径
}else{
message("64bit") # 使用64位编译器
DESTDIR = $$PWD/../bin64
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化