mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 17:26:21 +03:00
16 lines
355 B
Text
16 lines
355 B
Text
/*
|
|
-----BEGIN QCMOD-----
|
|
name: pkg-config
|
|
-----END QCMOD-----
|
|
*/
|
|
#include <QProcess>
|
|
class qc_pkg_config : public ConfObj
|
|
{
|
|
public:
|
|
qc_pkg_config(Conf *c) : ConfObj(c) {}
|
|
QString name() const { return "pkg-config executable"; }
|
|
QString shortname() const { return "pkg-config"; }
|
|
bool exec(){
|
|
return !conf->findProgram("pkg-config").isEmpty();
|
|
}
|
|
};
|