mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-10 13:36:54 +03:00
8 lines
268 B
Batchfile
8 lines
268 B
Batchfile
@echo off
|
|
FOR /F "tokens=* USEBACKQ" %%F IN (`git describe --dirty --always --tags`) DO (
|
|
SET var=%%F
|
|
)
|
|
ECHO #ifndef GITHASH_H > githash.h
|
|
ECHO #define GITHASH_H >> githash.h
|
|
ECHO const std::string kGitHash = "%var%"; >> githash.h
|
|
ECHO #endif // GITHASH_H >> githash.h |