mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 03:04:34 +00:00
24 lines
305 B
C++
24 lines
305 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();
|
|
static QSet<QString> qtWebEngine();
|
|
|
|
};
|
|
|
|
#endif // MODULES_H
|