Warning, /libraries/kreport/src/config-kreport.h.cmake is written in an unsupported language. File is not indexed.

0001 #ifndef KREPORT_CONFIG_H
0002 #define KREPORT_CONFIG_H
0003 
0004 /* config-kreport.h. Generated by cmake from config-kreport.h.cmake */
0005 
0006 /*! @file config-kreport.h
0007     Global KReport configuration (build time)
0008 */
0009 
0010 //! @def KREPORT_GIT_SHA1_STRING
0011 //! @brief Indicates the git sha1 commit which was used for compilation of KReport
0012 #cmakedefine KREPORT_GIT_SHA1_STRING "@KREPORT_GIT_SHA1_STRING@"
0013 
0014 //! @def KREPORT_GIT_BRANCH_STRING
0015 //! @brief Indicates the git branch which was used for compilation of KReport
0016 #cmakedefine KREPORT_GIT_BRANCH_STRING "@KREPORT_GIT_BRANCH_STRING@"
0017 
0018 //! @def KREPORT_SCRIPTING
0019 //! @brief Scripting support using JavaScript language
0020 #cmakedefine KREPORT_SCRIPTING
0021 
0022 //! @def KREPORT_UNFINISHED
0023 //! @brief Defined if unfinished features of KReport are enabled
0024 #cmakedefine KREPORT_UNFINISHED
0025 
0026 //! @def KREPORT_BASE_NAME
0027 //! @brief Base name for the KReport library, based on major stable version.
0028 //!        Useful for co-installability.
0029 #define KREPORT_BASE_NAME "@KREPORT_BASE_NAME@"
0030 
0031 //! @def KREPORT_BASE_NAME_LOWER
0032 //! @brief Like KREPORT_BASE_NAME but lowercase.
0033 #define KREPORT_BASE_NAME_LOWER "@KREPORT_BASE_NAME_LOWER@"
0034 
0035 //! @def KREPORT_STABLE_VERSION_MAJOR
0036 //! @brief Extra version info, stable major, e.g. 3 for 3.1.0 Alpha (3.0.90)
0037 #define KREPORT_STABLE_VERSION_MAJOR @PROJECT_STABLE_VERSION_MAJOR@
0038 
0039 //! @def KREPORT_STABLE_VERSION_MINOR
0040 //! @brief Extra version info, stable minor, e.g. 1 for 3.1.0 Alpha (3.0.90)
0041 #define KREPORT_STABLE_VERSION_MINOR @PROJECT_STABLE_VERSION_MINOR@
0042 
0043 //! @def KREPORT_STABLE_VERSION_PATCH
0044 //! @brief Extra version info, stable patch, e.g. 0 for 3.1.0 Alpha (3.0.90)
0045 #define KREPORT_STABLE_VERSION_PATCH @PROJECT_STABLE_VERSION_PATCH@
0046 
0047 //! @def KREPORT_TESTING_EXPORT
0048 //! @brief Export symbols for testing
0049 #ifdef BUILD_TESTING
0050 #  define KREPORT_TESTING_EXPORT KREPORT_EXPORT
0051 #else
0052 #  define KREPORT_TESTING_EXPORT
0053 #endif
0054 
0055 #endif