Skip to content

Commit 2fc2a91

Browse files
committed
Update minimum CMake and libappimage pinning
1 parent f1c9ab2 commit 2fc2a91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmake/dependencies.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# >= 3.11 required for FetchContent
2-
cmake_minimum_required(VERSION 3.11)
1+
# FetchContent_MakeAvailable() is only available in CMake 3.14 or newer
2+
cmake_minimum_required(VERSION 3.14)
33

44
include(FetchContent)
55

@@ -13,7 +13,7 @@ FetchContent_MakeAvailable(libappimage_patch)
1313
FetchContent_Declare(libappimage
1414
# We can not use a URL source with a github-generated source archive: libappimage's gtest submodule would be missing
1515
GIT_REPOSITORY https://github.com/AppImage/libappimage
16-
GIT_TAG 1d4d57622de2c7d39f7cc6c4980144c713cc59ca # latest as of 2022-04-03
16+
GIT_TAG aa7d9fb03d3d64415c37120f20faa05412458e94 # latest as of 2022-08-18
1717
# The patch command has || true to prevent the build from failing if the patch has already been applied
1818
PATCH_COMMAND patch -p 1 < ${libappimage_patch_SOURCE_DIR}/b3398bb496e47947864b4b8bc2999c8427f86a9a.patch || true
1919
)

0 commit comments

Comments
 (0)