26 lines
661 B
C
26 lines
661 B
C
#ifndef LICENSES_H
|
|
#define LICENSES_H
|
|
|
|
// This File(licenses.h) is generated with CMake
|
|
|
|
struct ThirdPartyLicense {
|
|
const char* name;
|
|
const char* url;
|
|
const char* license;
|
|
const bool isNotInTrial;
|
|
|
|
ThirdPartyLicense() : name(0), url(0), license(0), isNotInTrial(false) {}
|
|
ThirdPartyLicense(const char* name, const char* url, const char* license, const bool isNotInTrial)
|
|
: name(name), url(url), license(license), isNotInTrial(isNotInTrial) {}
|
|
bool isEmpty() const { return (name == 0 && url == 0 && license == 0); }
|
|
};
|
|
|
|
// License Textfiles
|
|
@LICENSES@
|
|
|
|
static const ThirdPartyLicense licenses3rdParties[] = {
|
|
@LICENSE_ARRAY@
|
|
};
|
|
|
|
#endif //LICENSES_H
|