I'd like to bake versioning into the build process. Does that sound like a good idea? I was thinking something like
# display current version:
make show-version
# update version:
make increment-version [MAJOR | MINOR | PATCH]
Which would update a version.h file somewhere and call git tag with the new version.
I'd like to bake versioning into the build process. Does that sound like a good idea? I was thinking something like
Which would update a
version.hfile somewhere and callgit tagwith the new version.