mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 18:24:33 +00:00
92 lines
2.3 KiB
C++
92 lines
2.3 KiB
C++
//#
|
|
//# Copyright (C) 2018-2020 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.
|
|
//#
|
|
|
|
#include "dependencymap.h"
|
|
#include "deploycore.h"
|
|
#include "quasarapp.h"
|
|
|
|
DependencyMap::DependencyMap() {
|
|
_qtModules = DeployCore::QtModule::NONE;
|
|
}
|
|
|
|
DependencyMap &DependencyMap::operator +=(const DependencyMap &other) {
|
|
this->_qtModules = this->_qtModules | other._qtModules;
|
|
this->_neadedLibs = this->_neadedLibs + other._neadedLibs;
|
|
this->_systemLibs = this->_systemLibs + other._systemLibs;
|
|
|
|
return *this;
|
|
}
|
|
|
|
DependencyMap &DependencyMap::operator -=(const DependencyMap &other) {
|
|
this->_qtModules = this->_qtModules & (~other._qtModules);
|
|
this->_neadedLibs = this->_neadedLibs - other._neadedLibs;
|
|
this->_systemLibs = this->_systemLibs - other._systemLibs;
|
|
|
|
return *this;
|
|
}
|
|
|
|
DeployCore::QtModule DependencyMap::qtModules() const {
|
|
return _qtModules;
|
|
}
|
|
|
|
const QSet<QString>& DependencyMap::neadedLibs() const {
|
|
return _neadedLibs;
|
|
}
|
|
|
|
const QSet<QString> &DependencyMap::systemLibs() const {
|
|
return _systemLibs;
|
|
}
|
|
|
|
void DependencyMap::addModule(DeployCore::QtModule module) {
|
|
this->_qtModules = this->_qtModules | module;
|
|
|
|
}
|
|
|
|
void DependencyMap::addSystemLib(const QString &lib) {
|
|
_systemLibs.insert(lib);
|
|
}
|
|
|
|
void DependencyMap::addNeadedLib(const QString &lib) {
|
|
_neadedLibs.insert(lib);
|
|
DeployCore::addQtModule(_qtModules, lib);
|
|
}
|
|
|
|
void DependencyMap::removeModule(DeployCore::QtModule module) {
|
|
_qtModules = _qtModules & (~module);
|
|
}
|
|
|
|
void DependencyMap::removeSystemLib(const QString &lib) {
|
|
_systemLibs.remove(lib);
|
|
}
|
|
|
|
void DependencyMap::removeNeadedLib(const QString &lib) {
|
|
_neadedLibs.remove(lib);
|
|
}
|
|
|
|
bool DependencyMap::containsSysLib(const QString &lib) const {
|
|
return _systemLibs.contains(lib);
|
|
}
|
|
|
|
bool DependencyMap::containsModule(DeployCore::QtModule module) const {
|
|
return _qtModules & module;
|
|
}
|
|
|
|
bool DependencyMap::containsNeadedLib(const QString &lib) const {
|
|
return _neadedLibs.contains(lib);
|
|
}
|
|
|
|
QSet<QString> DependencyMap::targets() const
|
|
{
|
|
return _targets;
|
|
}
|
|
|
|
void DependencyMap::setTargets(const QSet<QString> &targets)
|
|
{
|
|
_targets = targets;
|
|
}
|
|
|