Use https git urls for cloning

This commit is contained in:
Colton Staiduhar
2026-02-11 11:54:19 -05:00
parent 96b71da74b
commit c253b687eb

View File

@@ -20,7 +20,7 @@ set(FETCHCONTENT_BASE_DIR "${THIRDPARTY_DIR}")
# Fetch the miniaudio Repository and install it # Fetch the miniaudio Repository and install it
FetchContent_Declare( FetchContent_Declare(
miniaudio miniaudio
GIT_REPOSITORY git@github.com:mackron/miniaudio.git GIT_REPOSITORY https://github.com/mackron/miniaudio.git
GIT_TAG "master" GIT_TAG "master"
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
GIT_PROGRESS ON GIT_PROGRESS ON
@@ -31,7 +31,7 @@ FetchContent_MakeAvailable(miniaudio)
# Fetch the STB-Image Repository and install it # Fetch the STB-Image Repository and install it
FetchContent_Declare( FetchContent_Declare(
stb_image stb_image
GIT_REPOSITORY git@github.com:arizotaz/cmake_stb_image GIT_REPOSITORY https://github.com/arizotaz/cmake_stb_image.git
GIT_TAG "master" GIT_TAG "master"
GIT_SHALLOW TRUE GIT_SHALLOW TRUE
GIT_PROGRESS ON GIT_PROGRESS ON