Qt5

  • Published on
    English title: Does qBittorrent Directory Watch Support NTFS? [qBittorrent](https://github.com/qbittorrent/qBittorrent) 是一个基于[rb_libtorrent库](https://github.com/arvidn/libtorrent) 的跨平台高性能BT客户端。 这个`libtorrent` 有一个前缀`rb_`的原因是,有一个叫做[RTorrent](https://github.com/rakshasa/rtorrent)的软件已经占用了`libtorrent`这个名字。 而在qB和Deluge里面,通常大家所说的`libtorrent` ,全名是`libtorrent-rasterbar`, 也就是 RHEL包名里的`rb_libtorrent` ...
  • Published on
    ## 解决办法 环境: `qt5-qtbase-devel` `5.13.2` @ Fedora 32 Workstation Edition `qt5-qtbase-devel` `5.11.1` @ CentOS Linux release 8.1.1911 首先检查`CONFIG`是不是包含`console`, 如果没有则加上 `CONFIG += console` 检查`$HOME/.config/QtProject/qtlogging.ini`文件(如果没有则创建)是否包含以下内容: ```ini [Rules] *.debug=true qt.*.debug=false ``` 重新运行Qt程序,就可以看到qDebug的输出了。 ...