epubgrep/src/version.hpp.in

21 lines
310 B
C++

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