From eceaf16b306da04772dc345641c717dd8df785c9 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 11 Feb 2023 13:14:50 -0500 Subject: [PATCH] Fix broken git tags for glslang and nlohmann --- extern/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index cd11f40..5bc98be 100755 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -25,7 +25,7 @@ FetchContent_Declare( FetchContent_Declare( glslang GIT_REPOSITORY https://github.com/KhronosGroup/glslang.git - GIT_TAG master + GIT_TAG main GIT_SHALLOW ON ) @@ -75,7 +75,7 @@ add_subdirectory(doctest) FetchContent_Declare( json GIT_REPOSITORY https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent.git - GIT_TAG 6aebf09233951e4ce30a63919186a70b2b195756 + GIT_TAG v3.11.2 GIT_SHALLOW TRUE) FetchContent_GetProperties(json)