mirror of
https://github.com/arcan1s/reportabug.git
synced 2025-04-24 15:27:18 +00:00
23 lines
684 B
C
23 lines
684 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#define NAME "Report a Bug"
|
|
#define VERSION "@SUBPROJECT_VERSION@"
|
|
#define AUTHOR "@SUBPROJECT_AUTHOR@"
|
|
#define EMAIL "@SUBPROJECT_CONTACT@"
|
|
#define LICENSE "@SUBPROJECT_LICENSE@"
|
|
|
|
#define HOMEPAGE "https://github.com/arcan1s/reportabug"
|
|
#define REPOSITORY "https://github.com/arcan1s/reportabug"
|
|
#define BUGTRACKER "https://github.com/arcan1s/reportabug/issues"
|
|
|
|
#define BUILD_DATE "@CURRENT_DATE@"
|
|
#define DATE "2014-@CURRENT_YEAR@"
|
|
|
|
#define CMAKE_BUILD_TYPE "@CMAKE_BUILD_TYPE@"
|
|
#define CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
|
|
#define SUBPROJECT_USE_QT5 "@USE_QT5@"
|
|
#define SUBPROJECT_LIBRARY "@BUILD_AS_LIBRARY@"
|
|
|
|
#endif /* VERSION_H */
|