You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
664 B
CMake
15 lines
664 B
CMake
|
|
// Version Number
|
|
#define FCVersionMajor "${PACKAGE_VERSION_MAJOR}"
|
|
#define FCVersionMinor "${PACKAGE_VERSION_MINOR}"
|
|
#define FCVersionName "${PACKAGE_VERSION_NAME}"
|
|
#define FCVersionPoint "${PACKAGE_VERSION_PATCH}"
|
|
#define FCVersionSuffix "${PACKAGE_VERSION_SUFFIX}"
|
|
// Displayed Copyright Year (i.e. build year)
|
|
#define FCCopyrightYear ${PACKAGE_COPYRIGHT_YEAR}
|
|
// test: $Format:Hash (%H), Date: %ci$
|
|
#define FCRevision "${PACKAGE_WCREF}" //Highest committed revision number
|
|
#define FCRevisionDate "${PACKAGE_WCDATE}" //Date of highest committed revision
|
|
#define FCRepositoryURL "${PACKAGE_WCURL}" //Repository URL of the working copy
|
|
|