mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-16 03:19:36 +00:00
23 lines
265 B
C
23 lines
265 B
C
|
#ifndef MODULES_H
|
||
|
#define MODULES_H
|
||
|
|
||
|
#include "testutils.h"
|
||
|
|
||
|
#include <QSet>
|
||
|
|
||
|
|
||
|
|
||
|
class Modules
|
||
|
{
|
||
|
private:
|
||
|
public:
|
||
|
Modules();
|
||
|
|
||
|
static QSet<QString> qtLibs();
|
||
|
static QSet<QString> qmlLibs();
|
||
|
static QSet<QString> qtWithoutTr();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // MODULES_H
|