1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
#ifndef PONYPROGVERSION_H
#define PONYPROGVERSION_H
#ifndef APP_VERSION
#define APP_VERSION \"$$APP_VERSION\"
#endif
#ifndef APP_REVISION
#define APP_REVISION \"$$APP_REVISION\"
#endif
#ifndef APP_BRANCH
#define APP_BRANCH \"$$APP_BRANCH\"
#endif
#ifndef APP_AUTHOR
#define APP_AUTHOR \"$$APP_AUTHOR\"
#endif
#ifndef PROGRAM_DATE
#define PROGRAM_DATE \"$$APP_BUILD_DATE\"
#endif
#ifndef APP_NAME
#define APP_NAME \"$$APP_NAME\"
#endif
#ifndef APP_YEAR
#define APP_YEAR \"$$APP_YEAR\"
#endif
#ifndef APP_EMAIL
#define APP_EMAIL \"$$APP_EMAIL\"
#endif
#define USE_QT_VERSION $$USE_QT_VERSION
#endif
|