blob: f230124a54e42eb91f9b92512bb94c73b3b95750 [file] [log] [blame]
Zane Shelleye46e4252022-12-05 17:12:44 -06001#pragma once
2
3#include <buildinfo.hpp>
4
5// TODO: It would be preferred that this function exist in buildinfo.hpp.
6// However, due to meson limitations, we were not able to figure out how
7// to install that auto-generated header so it could be available to
8// the user applications.
9
10namespace libhei
11{
12
13inline const char* getBuildInfo()
14{
15 return BUILDINFO;
16}
17
18} // end namespace libhei