File: version-cmake.h.in

package info (click to toggle)
ponyprog 3.1.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 11,488 kB
  • sloc: cpp: 35,376; python: 981; sh: 565; makefile: 41; ansic: 38
file content (38 lines) | stat: -rw-r--r-- 601 bytes parent folder | download | duplicates (2)
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