From 1e9c3acc06646fa6b89e1ff80db082aadb57a5c5 Mon Sep 17 00:00:00 2001 From: Leon Lynch Date: Mon, 31 Jul 2023 18:43:39 +0200 Subject: [PATCH] Update to latest libargp This version of libargp is aware of C23 and suppresses warnings related to sprintf() --- cmake/Modules/FetchLibArgp.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/Modules/FetchLibArgp.cmake b/cmake/Modules/FetchLibArgp.cmake index e43f974..d8b4794 100644 --- a/cmake/Modules/FetchLibArgp.cmake +++ b/cmake/Modules/FetchLibArgp.cmake @@ -1,5 +1,5 @@ ############################################################################## -# Copyright (c) 2022 Leon Lynch +# Copyright (c) 2022, 2023 Leon Lynch # # This file is licensed under the terms of the LGPL v2.1 license. # See LICENSE file. @@ -24,7 +24,7 @@ message(CHECK_START "Downloading libargp...") FetchContent_Declare( libargp GIT_REPOSITORY https://github.com/leonlynch/libargp.git - GIT_TAG 8c794480952124413390d608b89b4af2bee33163 + GIT_TAG 987d87b98e4cd03abb1107b77ef5d43ad0552e13 ) FetchContent_MakeAvailable(libargp) message(CHECK_PASS "done")