mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 18:24:33 +00:00
26 lines
762 B
C++
26 lines
762 B
C++
/*
|
|
* Copyright (C) 2018-2024 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 MODULESQT6_4_H
|
|
#define MODULESQT6_4_H
|
|
|
|
#include "modulesqt6_3.h"
|
|
|
|
class ModulesQt6_4: public ModulesQt63
|
|
{
|
|
public:
|
|
ModulesQt6_4();
|
|
QSet<QString> qmlLibs(const QString &distDir = DISTRO_DIR) const override;
|
|
QSet<QString> qmlVirtualKeyBoadrLibs(const QString &distDir = DISTRO_DIR) const override;
|
|
QSet<QString> qtWebEngine(const QString &distDir = DISTRO_DIR) const override;
|
|
QSet<QString> qtWebEngineWidgets(const QString &distDir = DISTRO_DIR) const override;
|
|
|
|
|
|
};
|
|
|
|
#endif // MODULESQT6_4_H
|