libuv/.github
Lawrence Stubbs 63446206c1 CMake create release package, add GitHub Action CI
This will create an complete installer package for most platforms. Thereafter with `Findlibuv.cmake` in there directory and something like the following in there `CMakeLists.txt`.

```
find_package(libuv QUIET)
if(NOT libuv_FOUND)
    FetchContent_Declare(libuv
        URL https://github.com/libuv/libuv/archive/refs/tags/v1.48.0.zip
        URL_MD5 67d0e50ac6e95de12b09b17ff8baed0f
    )
    FetchContent_MakeAvailable(libuv)
endif()
```
I think https://github.com/libuv/libuv/pull/3194 should just be closed, it just doesn't actually automate any process, which was my initial use case, grab binary without me doing any building.
2024-08-02 11:24:04 -04:00
..
workflows CMake create release package, add GitHub Action CI 2024-08-02 11:24:04 -04:00
dependabot.yml Create dependabot.yml for updating github-actions (#4450) 2024-07-25 12:22:22 -04:00
ISSUE_TEMPLATE.md doc: switch discussion forum to github 2021-06-30 23:26:40 -04:00