mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
3ddc14d35d
(cherry picked from commit 47f2f5b349
)
12 lines
246 B
INI
12 lines
246 B
INI
#ifndef __GIT_VERSION_H__
|
|
#define __GIT_VERSION_H__
|
|
|
|
#include <string>
|
|
|
|
const std::string commit_hash = "@COMMIT_HASH@";
|
|
const std::string branch_name = "@BRANCH_NAME@";
|
|
const std::string build_time = "@BUILD_TIME@";
|
|
|
|
#endif //__GIT_VERSION_H__
|
|
|