2020-03-30 08:44:45 +00:00
|
|
|
#ifndef @CMLIB_PROJECT_NAME_CANONICAL@_CMLIB_CONFIG_HPP_
|
|
|
|
#define @CMLIB_PROJECT_NAME_CANONICAL@_CMLIB_CONFIG_HPP_
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#define @CMLIB_PROJECT_NAME_CANONICAL@_VERSION_STR "@PROJECT_VERSION@"
|
|
|
|
#define @CMLIB_PROJECT_NAME_CANONICAL@_VERSION_INT @PROJECT_VERSION_INT@
|
|
|
|
|
|
|
|
#if defined (CMLIB_ORGANIZATION_NAME)
|
|
|
|
#error "Duplicate definition of macros CMLIB_ORGANIZATION_NAME"
|
|
|
|
#else
|
2021-06-07 14:46:58 +00:00
|
|
|
#define CMLIB_ORGANIZATION_NAME "@CMLIB_ORGANIZATION_NAME@"
|
2020-03-30 08:44:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_ORGANIZATION_NAME_LOWER)
|
|
|
|
#error "Duplicate definition of macros CMLIB_ORGANIZATION_NAME_LOWER"
|
|
|
|
#else
|
2020-04-09 19:20:55 +00:00
|
|
|
#define CMLIB_ORGANIZATION_NAME_LOWER "@CMLIB_ORGANIZATION_NAME_LOWER@"
|
2020-03-30 08:44:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_ORGANIZATION_NAME_UPPER)
|
|
|
|
#error "Duplicate definition of macros CMLIB_ORGANIZATION_NAME_UPPER"
|
|
|
|
#else
|
2020-04-09 19:20:55 +00:00
|
|
|
#define CMLIB_ORGANIZATION_NAME_UPPER "@CMLIB_ORGANIZATION_NAME_UPPER@"
|
2020-03-30 08:44:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_PROJECT_NAME)
|
|
|
|
#error "Duplicate definition of macros CMLIB_PROJECT_NAME"
|
|
|
|
#else
|
|
|
|
#define CMLIB_PROJECT_NAME "@CMAKE_PROJECT_NAME@"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_PROJECT_NAME_LOWER)
|
|
|
|
#error "Duplicate definition of macros CMLIB_PROJECT_NAME_LOWER"
|
|
|
|
#else
|
2020-04-09 19:20:55 +00:00
|
|
|
#define CMLIB_PROJECT_NAME_LOWER "@CMLIB_PROJECT_NAME_LOWER@"
|
2020-03-30 08:44:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_PROJECT_NAME_UPPER)
|
|
|
|
#error "Duplicate definition of macros CMLIB_PROJECT_NAME_UPPER"
|
|
|
|
#else
|
2020-04-09 19:20:55 +00:00
|
|
|
#define CMLIB_PROJECT_NAME_UPPER "@CMLIB_PROJECT_NAME_UPPER@"
|
2020-03-30 08:44:45 +00:00
|
|
|
#endif
|
|
|
|
|
2021-06-01 10:36:24 +00:00
|
|
|
#if defined (CMLIB_THEME_NAME)
|
|
|
|
#error "Duplicate definition of macros CMLIB_THEME_NAME"
|
|
|
|
#else
|
2021-06-07 14:46:58 +00:00
|
|
|
#define CMLIB_THEME_NAME "@CMLIB_THEME_NAME@"
|
2021-06-01 10:36:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_THEME_NAME_LOWER)
|
|
|
|
#error "Duplicate definition of macros CMLIB_THEME_NAME_LOWER"
|
|
|
|
#else
|
|
|
|
#define CMLIB_THEME_NAME_LOWER "@CMLIB_THEME_NAME_LOWER@"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_THEME_NAME_UPPER)
|
|
|
|
#error "Duplicate definition of macros CMLIB_THEME_NAME_UPPER"
|
|
|
|
#else
|
|
|
|
#define CMLIB_THEME_NAME_UPPER "@CMLIB_THEME_NAME_UPPER@"
|
|
|
|
#endif
|
|
|
|
|
2021-06-07 14:46:58 +00:00
|
|
|
#if defined (CMLIB_AUTHOR_NAME)
|
|
|
|
#error "Duplicate definition of macros CMLIB_AUTHOR_NAME"
|
|
|
|
#else
|
|
|
|
#define CMLIB_AUTHOR_NAME "@CMLIB_AUTHOR_NAME@"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_AUTHOR_EMAIL)
|
|
|
|
#error "Duplicate definition of macros CMLIB_AUTHOR_EMAIL"
|
|
|
|
#else
|
|
|
|
#define CMLIB_AUTHOR_EMAIL "@CMLIB_AUTHOR_EMAIL@"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_DESCRIPTION)
|
|
|
|
#error "Duplicate definition of macros CMLIB_DESCRIPTION"
|
|
|
|
#else
|
|
|
|
#define CMLIB_DESCRIPTION "@CMLIB_DESCRIPTION@"
|
|
|
|
#endif
|
|
|
|
|
2020-03-30 08:44:45 +00:00
|
|
|
#if defined (CMLIB_BUILD_TYPE)
|
|
|
|
#error "Duplicate definition of macros CMLIB_BUILD_TYPE"
|
|
|
|
#else
|
|
|
|
#define CMLIB_BUILD_TYPE "@CMAKE_BUILD_TYPE@"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (CMLIB_BUILD_DATE)
|
|
|
|
#error "Duplicate definition of macros CMLIB_BUILD_DATE"
|
|
|
|
#else
|
|
|
|
#define CMLIB_BUILD_DATE "@TODAY@"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* @CMLIB_PROJECT_NAME_CANONICAL@_CMLIB_CONFIG_HPP_ */
|
|
|
|
|