libravatarserv/src/version.hpp.in

20 lines
340 B
C++

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