obsidian/笔记文件/2.笔记/Qt库依赖的打包路径.md

17 lines
224 B
Markdown
Raw Permalink Normal View History

2025-03-26 00:02:56 +08:00
#qt
在.pro文件里添加配置
``` cpp
CONFIG(release, debug|release){
DESTDIR = $$PWD/Output/release
}else{
DESTDIR = $$PWD/Output/debug
}
```
使用工具检测依赖
``` shell
windeployqt launcher.exe
```