From d13a7eb4be3723e843758fa86182e99ea3f92d79 Mon Sep 17 00:00:00 2001 From: Zephyr Lykos Date: Wed, 5 Nov 2025 23:59:19 +0800 Subject: [PATCH] cmake: Bump cmake_minimum_required to 3.5 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d96146..fe4be48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.4) +cmake_minimum_required(VERSION 3.5) project(QtZeroConf VERSION 0.1.0) find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core Network)