1 Star 0 Fork 26

gnulxj/EpicSim

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CREATE_VERSION.sh 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
Admin 提交于 2020-09-14 13:25 . EpicSim initial version 1.0
#!/bin/sh
# This script manually creates a version.h file.
#
# It is used when creating a MinGW executable from a Cygwin
# hosted git repository. It assumes that git is available.
#
# sh scripts/CREATE_VERSION.sh
#
echo "Building version_tag.h with git describe"
#tmp=`git describe | sed -e 's;\(.*\);#define VERSION_TAG "\1";'`
tmp="#define VERSION_TAG \"\""
echo "#ifndef VERSION_TAG" > version_tag.h
echo "$tmp" >> version_tag.h
echo "#endif" >> version_tag.h
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/gnulxj/EpicSim.git
git@gitee.com:gnulxj/EpicSim.git
gnulxj
EpicSim
EpicSim
master

搜索帮助