OrangePi3588Media/include/version.h

22 lines
313 B
C++

#pragma once
#ifndef RK_PROJECT_VERSION
#define RK_PROJECT_VERSION "0.0.0-dev"
#endif
#ifndef RK_GIT_SHA
#define RK_GIT_SHA "nogit"
#endif
namespace rk3588 {
inline const char* ProjectVersion() {
return RK_PROJECT_VERSION;
}
inline const char* GitSha() {
return RK_GIT_SHA;
}
} // namespace rk3588