mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 11:40:32 +05:00
Add INSTALL_PREFIX to the header and add it to the search path for OIDs, translations and documentation.
19 lines
490 B
C
19 lines
490 B
C
#define XCA_VERSION "@PROJECT_VERSION@"
|
|
|
|
/* usually "xca" */
|
|
#define PACKAGE_TARNAME "@PROJECT_NAME@"
|
|
|
|
/* usually "X Certificate and Key management" */
|
|
#define PACKAGE_NAME "@PROJECT_DESCRIPTION@"
|
|
|
|
#define GIT_COMMIT_REV "@GIT_REV@"
|
|
#cmakedefine GIT_LOCAL_CHANGES
|
|
|
|
/* Build an AppStore compliant version */
|
|
#cmakedefine APPSTORE_COMPLIANT
|
|
|
|
/* Install PREFIX (linux only) */
|
|
#if defined Q_OS_UNIX && ! defined Q_OS_MACOS
|
|
#define INSTALL_DATA_PREFIX "@CMAKE_INSTALL_PREFIX@/share/xca"
|
|
#endif
|