cmake: Bump minimal cmake version to 3.23

This commit is contained in:
Tobias Hunger 2023-03-08 09:53:54 +01:00 committed by Tobias Hunger
parent a45596b251
commit 52a70b7d89
18 changed files with 19 additions and 19 deletions

View file

@ -15,7 +15,7 @@ target in two steps:
A minimal CMake `CMakeLists.txt` file looks like this:
```cmake
cmake_minimum_required(VERSION 3.21)
cmake_minimum_required(VERSION 3.23)
project(my_application LANGUAGES CXX)
# Note: Use find_package(Slint) instead of the following three commands,