CQtDeployer/Deploy/structs.cpp

11 lines
210 B
C++
Raw Normal View History

2019-03-18 10:33:03 +03:00
#include "structs.h"
bool LibInfo::operator ==(const LibInfo &other) {
return platform == other.platform &&
name == other.name;
}
QString LibInfo::fullPath() {
return path + "/" + name;
}