libravatarserv/src/version.hpp.in

20 lines
340 B
C++
Raw Normal View History

/*!
* @file
*
* @brief Version variables.
*/
2018-11-24 11:00:07 +01:00
#ifndef LIBRAVATARSERV_VERSION_HPP
#define LIBRAVATARSERV_VERSION_HPP
2018-11-24 11:00:07 +01:00
#include <string_view>
namespace libravatarserv {
//! The version of the program.
inline constexpr std::string_view version{"@PROJECT_VERSION@"};
} // namespace libravatarserv
#endif // LIBRAVATARSERV_VERSION_HPP