[swift.pro] Info about expiry date default

This commit is contained in:
Klaus Basan
2019-10-20 12:29:36 +02:00
parent 97eb8880a8
commit 852f707f7f
2 changed files with 2 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
const QDateTime &BlackConfig::CBuildConfig::getEol() const QDateTime &BlackConfig::CBuildConfig::getEol()
{ {
static const QString eol(\"$$swiftConfig(endOfLife)\"); // config.pri static const QString eol(\"$$swiftConfig(endOfLife)\"); // config.pri, defaults in default.json
static const QDateTime dt(eol.isEmpty() ? QDateTime() : QDateTime::fromString(eol, \"yyyyMMdd\")); static const QDateTime dt(eol.isEmpty() ? QDateTime() : QDateTime::fromString(eol, \"yyyyMMdd\"));
return dt; return dt;
} }

View File

@@ -7,6 +7,7 @@ OTHER_FILES += mkspecs/features/*.prf
OTHER_FILES += mkspecs/features/*.pri OTHER_FILES += mkspecs/features/*.pri
OTHER_FILES += *.supp OTHER_FILES += *.supp
OTHER_FILES += .astylerc OTHER_FILES += .astylerc
OTHER_FILES += $$SWIFT_CONFIG_JSON
CheckMandatoryDependency(gl) CheckMandatoryDependency(gl)
CheckMandatoryDependency(glu) CheckMandatoryDependency(glu)