https://github.com/Kitware/CMake
Revision ef03124237a1bbbb47b71faaecbaac174839d1e4 authored by Kyle Edwards on 23 October 2020, 16:47:56 UTC, committed by Kyle Edwards on 27 October 2020, 16:05:41 UTC
1 parent 8d6a0b9
Raw File
Tip revision: ef03124237a1bbbb47b71faaecbaac174839d1e4 authored by Kyle Edwards on 23 October 2020, 16:47:56 UTC
CMake GUI: Add --browse-manual argument
Tip revision: ef03124
CMakeVersion.bash
#!/usr/bin/env bash
# Update the version component if it looks like a date or -f is given.
if test "x$1" = "x-f"; then shift ; n='*' ; else n='\{8\}' ; fi
if test "$#" -gt 0; then echo 1>&2 "usage: CMakeVersion.bash [-f]"; exit 1; fi
sed -i -e '
s/\(^set(CMake_VERSION_PATCH\) [0-9]'"$n"'\(.*\)/\1 '"$(date +%Y%m%d)"'\2/
' "${BASH_SOURCE%/*}/CMakeVersion.cmake"
back to top