Files
CMake/Utilities/Scripts/update-kwiml.bash
Ben Boeckel e1f4a35171 Utilities/Scripts: do not use exact tree match
CMake patches its third party imports directly, so skip the exact match
strategy.
2025-11-08 07:45:05 -05:00

22 lines
409 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="KWIML"
readonly ownership="KWIML Upstream <kwrobot@kitware.com>"
readonly subtree="Utilities/KWIML"
readonly repo="https://gitlab.kitware.com/utils/kwiml.git"
readonly tag="master"
readonly shortlog=true
readonly exact_tree_match=false
readonly paths="
"
extract_source () {
git_archive
}
. "${BASH_SOURCE%/*}/update-third-party.bash"