From 98c6c19cf41000f75b367c5012c1d6e690fafe06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rimas=20Misevi=C4=8Dius?= Date: Fri, 22 Sep 2023 22:11:47 +0300 Subject: [PATCH] Fix: raise minimum required version of CMake to 3.13 add_link_options() requires CMake 3.13 or later. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cf202c8..e0e16e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,6 @@ # FindICU requires 3.7 -cmake_minimum_required(VERSION 3.7) +# add_link_options() requires 3.13 +cmake_minimum_required(VERSION 3.13) set(CMAKE_SUPPRESS_REGENERATION true)