mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 11:14:33 +00:00
35 lines
639 B
C++
35 lines
639 B
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#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> qmlLibsExtractPlugins();
|
|
|
|
static QSet<QString> outTestLibs();
|
|
|
|
static QSet<QString> qtWithoutTr();
|
|
static QSet<QString> qtWebEngine();
|
|
|
|
};
|
|
|
|
#endif // MODULES_H
|