mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
Merge topic 'ccmake-windows'
e674e02c55Help: Add release note for experimental ccmake support on Windows5c9310c714ci: Enable ccmake on Windows9278c6e01accmake: Add Windows support using PDCursesb97c12babbccmake: Refactor resizing logic into cmCursesFormbf11dab49dccmake: Refactor BUILD_CursesDialog option logicbf94e01348cmpdcurses: Add CMake build system89703bc941Merge branch 'upstream-PDCurses' into update-pdcursesf84c4112c3PDCurses 2021-12-08 (f1cd4f45) ... Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6832
This commit is contained in:
Executable
+32
@@ -0,0 +1,32 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -x
|
||||
shopt -s dotglob
|
||||
|
||||
readonly name="PDCurses"
|
||||
readonly ownership="PDCurses Upstream <kwrobot@kitware.com>"
|
||||
readonly subtree="Utilities/cmpdcurses"
|
||||
readonly repo="https://github.com/wmcbrine/PDCurses.git"
|
||||
readonly tag="f1cd4f4569451a5028ddf3d3c202f0ad6b1ae446"
|
||||
readonly shortlog=false
|
||||
readonly paths="
|
||||
README.md
|
||||
*.h
|
||||
common/acs437.h
|
||||
common/acsuni.h
|
||||
pdcurses/README.md
|
||||
pdcurses/*.c
|
||||
wincon/README.md
|
||||
wincon/*.c
|
||||
wincon/*.h
|
||||
"
|
||||
|
||||
extract_source () {
|
||||
git_archive
|
||||
pushd "${extractdir}/${name}-reduced"
|
||||
echo "* -whitespace" > .gitattributes
|
||||
popd
|
||||
}
|
||||
|
||||
. "${BASH_SOURCE%/*}/update-third-party.bash"
|
||||
Reference in New Issue
Block a user