File: gitSha1.h

package info (click to toggle)
vzlogger 0.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,140 kB
  • sloc: cpp: 12,020; sh: 331; ansic: 157; makefile: 25
file content (12 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
/*
	solution for git sha based on
	http://stackoverflow.com/questions/1435953/how-can-i-pass-git-sha1-to-compiler-as-definition-using-cmake
*/

#ifndef __git_sha1_h_
#define __git_sha1_h_
extern const char g_GIT_SHA1[];
extern const char g_GIT_SHALONG[];
extern const char g_GIT_LAST_COMMIT_DATE[];

#endif