Skip to content

Commit 9571d36

Browse files
committed
Fix compatibility with CMake 4
1 parent 76b6664 commit 9571d36

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.4)
1+
cmake_minimum_required(VERSION 3.5)
22

33
project(libappimage)
44

cmake/dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ if (NOT LIBAPPIMAGE_SHARED_ONLY)
108108

109109
ExternalProject_Add(
110110
XdgUtils-EXTERNAL
111-
GIT_REPOSITORY https://github.com/azubieta/xdg-utils-cxx.git
111+
GIT_REPOSITORY https://github.com/AppImageCommunity/xdg-utils-cxx.git
112112
GIT_TAG master
113113
GIT_SHALLOW On
114114
CMAKE_ARGS

src/libappimage/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.2)
1+
cmake_minimum_required(VERSION 3.5)
22

33
add_subdirectory(core)
44
add_subdirectory(utils)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.4)
1+
cmake_minimum_required(VERSION 3.5)
22

33
add_library(temporarydirectory TemporaryDirectory.cpp)
44
target_include_directories(temporarydirectory PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

0 commit comments

Comments
 (0)