cmake fetchcontent_declare(10) examples

apache/avro lang/c++/CMakeLists.txt :83

FetchContent_Declare(
        fmt
        GIT_REPOSITORY  https://github.com/fmtlib/fmt.git
        GIT_TAG         10.2.1
        GIT_PROGRESS    TRUE
        USES_TERMINAL_DOWNLOAD TRUE
)

libcpr/cpr CMakeLists.txt :297

FetchContent_Declare(curl
                     URL                    https://github.com/curl/curl/releases/download/curl-8_10_1/curl-8.10.1.tar.xz
                     URL_HASH               SHA256=73a4b0e99596a09fa5924a4fb7e4b995a85fda0d18a2c02ab9cf134bebce04ee # the file hash for curl-8.10.1.tar.xz
                     USES_TERMINAL_DOWNLOAD TRUE)   # <---- This is needed only for Ninja to show download progress

skypjack/entt testbed/CMakeLists.txt :7

FetchContent_Declare(
    SDL3
    GIT_REPOSITORY https://github.com/libsdl-org/SDL
    GIT_TAG release-3.2.10
    GIT_SHALLOW 1
)

TartanLlama/expected CMakeLists.txt :70

FetchContent_Declare(Catch2 URL
  https://github.com/catchorg/Catch2/archive/v2.13.10.zip)

neocmakelsp/neocmakelsp assets_for_test/ast_test/nheko_test.cmake :606

FetchContent_Declare(
    MatrixClient
        GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git
        GIT_TAG        v0.10.0
)