diff options
author | 2025-03-17 16:25:41 +0200 | |
---|---|---|
committer | 2025-03-19 18:04:56 +0000 | |
commit | 429abe7b0362ccfa90a0f1db29b02d6c1814b74d (patch) | |
tree | e1bd90f121f32108e5c2e0bb852ec3cb71ce02df | |
parent | d9c2d94e80444f0eec5dddf86a7a98d335761f48 (diff) |
Fixes quicly compilation error and warning with CMake 4
Compatibility with CMake < 3.5 has been removed from CMake.
Compatibility with CMake < 3.10 will be removed from a future version of CMake.
Type: fix
Change-Id: I810f70459d5ba70f6a8c0ea0d57c77fe20dddb73
Signed-off-by: nucleo <alekcejk@googlemail.com>
-rw-r--r-- | build/external/patches/quicly_0.1.5-vpp/0003-cmake-4.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build/external/patches/quicly_0.1.5-vpp/0003-cmake-4.patch b/build/external/patches/quicly_0.1.5-vpp/0003-cmake-4.patch new file mode 100644 index 00000000000..d16ac0d79ce --- /dev/null +++ b/build/external/patches/quicly_0.1.5-vpp/0003-cmake-4.patch @@ -0,0 +1,16 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,4 +1,4 @@ +-CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) ++CMAKE_MINIMUM_REQUIRED(VERSION 3.10) + CMAKE_POLICY(SET CMP0003 NEW) + + PROJECT(quicly) +--- a/deps/picotls/CMakeLists.txt ++++ b/deps/picotls/CMakeLists.txt +@@ -1,4 +1,4 @@ +-CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) ++CMAKE_MINIMUM_REQUIRED(VERSION 3.10) + CMAKE_POLICY(SET CMP0003 NEW) + + PROJECT(picotls) |