Warning, /utilities/totalreqall/AppInfo.h.cmake is written in an unsupported language. File is not indexed.
0001 // SPDX-FileCopyrightText: 2020 Loren Burkholder <computersemiexpert@outlook.com> 0002 // SPDX-License-Identifier: BSD-2-Clause 0003 0004 #ifndef APPINFO_H 0005 #define APPINFO_H 0006 0007 #include <QString> 0008 #include <QVersionNumber> 0009 #include <KAboutData> 0010 #include <KLocalizedString> 0011 0012 namespace TotalReqall 0013 { 0014 const QVersionNumber appVersion{ ${CMAKE_PROJECT_VERSION_MAJOR}, 0015 ${CMAKE_PROJECT_VERSION_MINOR}, 0016 ${CMAKE_PROJECT_VERSION_PATCH} }; 0017 const QString appName{ "TotalReqall" }; 0018 const QString organizationName{ "KDE" }; 0019 const QString organizationDomain{ "org.kde.totalreqall" }; 0020 const QString appDescription{ i18n("Memorize the Bible or custom content.") }; 0021 } // namespace TotalReqall 0022 0023 #endif // APPINFO_H