2019-09-23 18:37:17 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018-2019 QuasarApp.
|
|
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
* of this license document, but changing it is not allowed.
|
|
|
|
*/
|
|
|
|
|
2019-09-14 15:51:23 +03:00
|
|
|
#ifndef MODULES_H
|
|
|
|
#define MODULES_H
|
|
|
|
|
|
|
|
#include "testutils.h"
|
|
|
|
|
|
|
|
#include <QSet>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Modules
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
public:
|
|
|
|
Modules();
|
|
|
|
|
|
|
|
static QSet<QString> qtLibs();
|
|
|
|
static QSet<QString> qmlLibs();
|
2019-09-24 18:21:12 +03:00
|
|
|
static QSet<QString> outTestLibs();
|
|
|
|
|
2019-09-14 15:51:23 +03:00
|
|
|
static QSet<QString> qtWithoutTr();
|
2019-09-17 14:35:40 +03:00
|
|
|
static QSet<QString> qtWebEngine();
|
2019-09-14 15:51:23 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MODULES_H
|