OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
BuildInfo.h.in
Go to the documentation of this file.
1// Build and version information
2// generated automatically - do not edit
3
4#ifndef OPALX_BUILD_INFO_H
5#define OPALX_BUILD_INFO_H
6
7#include <string_view>
8
9namespace buildinfo {
10
11inline constexpr std::string_view project_name = "OPALX";
12inline constexpr std::string_view project_version = "@PROJECT_VERSION@";
13
14inline constexpr int version_major = @OPALX_VERSION_MAJOR_VALUE@;
15inline constexpr int version_minor = @OPALX_VERSION_MINOR_VALUE@;
16inline constexpr int version_patch = @OPALX_VERSION_PATCH_VALUE@;
17
18inline constexpr std::string_view compile_arch = "@OPALX_COMPILE_ARCH@";
19inline constexpr std::string_view compile_line = "@OPALX_COMPILE_LINE@";
20inline constexpr std::string_view compile_date = "@OPALX_COMPILE_DATE@";
21inline constexpr std::string_view compile_machine = "@OPALX_COMPILE_MACHINE@";
22inline constexpr std::string_view compile_options = "@OPALX_COMPILE_OPTIONS@";
23inline constexpr std::string_view compile_user = "@OPALX_COMPILE_USER@";
24inline constexpr std::string_view bugreport = "@OPALX_BUGREPORT@";
25
26} // namespace buildinfo
27
28#endif