mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 20:29:49 -05:00
Merge topic 'import-libuv'
39ac889dcmake: Add trivial usage of libuv7cf369feDo not build libuv on HP-UX075cae51Do not build libuv on SPARC9a53af40Do not build libuv on Cygwin219f7411Do not build libuv on Mac OS X 10.4 and lower8a5beef3Add option to build CMake against a system libuve56aa462FindLibUV: Add module to find libuv package551d5aedlibuv: Fix unused variable warning in uv_loop_closef4f8074blibuv: Avoid including macOS CoreServices header globallya63aaaedlibuv: Always include our own header first9130b53alibuv: Conditionally declare Windows APIs for VS 2008 and belowb52afa46libuv: Fix anonymous union syntax05dbc204libuv: Fix Windows API function typedef syntax75139374libuv: Install LICENSE file with CMake documentation95dcc4e4libuv: Disable warnings to avoid changing 3rd party code13b7e758libuv: Build the library within CMake ...
This commit is contained in:
Executable
+26
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -x
|
||||
shopt -s dotglob
|
||||
|
||||
readonly name="libuv"
|
||||
readonly ownership="libuv upstream <libuv@googlegroups.com>"
|
||||
readonly subtree="Utilities/cmlibuv"
|
||||
readonly repo="https://github.com/libuv/libuv.git"
|
||||
readonly tag="v1.x"
|
||||
readonly shortlog=false
|
||||
readonly paths="
|
||||
LICENSE
|
||||
include
|
||||
src
|
||||
"
|
||||
|
||||
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