File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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 )
3
3
4
4
include (FetchContent)
5
5
@@ -13,7 +13,7 @@ FetchContent_MakeAvailable(libappimage_patch)
13
13
FetchContent_Declare(libappimage
14
14
# We can not use a URL source with a github-generated source archive: libappimage's gtest submodule would be missing
15
15
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
17
17
# The patch command has || true to prevent the build from failing if the patch has already been applied
18
18
PATCH_COMMAND patch -p 1 < ${libappimage_patch_SOURCE_DIR} /b3398bb496e47947864b4b8bc2999c8427f86a9a.patch || true
19
19
)
You can’t perform that action at this time.
0 commit comments