utf8proc

A clean C library for processing UTF-8 Unicode data
git clone https://git.sinitax.com/juliastrings/utf8proc
Log | Files | Refs | README | LICENSE | sfeed.txt

commit a9c6332ad1f8e1c987aae5d4a4b632b2c52d5782
parent 2bbb1ba932f727aad1fab14fafdbc89ff9dc4604
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date:   Sun, 26 Nov 2023 03:00:49 +0100

upgrade minimum cmake version (#255)

This will silence the following warning:

CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.
Diffstat:
MCMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.0.0) +cmake_minimum_required (VERSION 3.5) include (utils.cmake)