From 791728dfd88074044302687c258599326d3433e1 Mon Sep 17 00:00:00 2001 From: chiteroman Date: Mon, 12 Aug 2024 02:23:13 +0200 Subject: [PATCH] Use CMake version 3.22.1 --- module/build.gradle.kts | 2 +- module/src/main/cpp/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/build.gradle.kts b/module/build.gradle.kts index e0ba1e7..63f021f 100644 --- a/module/build.gradle.kts +++ b/module/build.gradle.kts @@ -32,7 +32,7 @@ android { externalNativeBuild { cmake { - version = "3.28.0+" + version = "3.22.1" path("src/main/cpp/CMakeLists.txt") } } diff --git a/module/src/main/cpp/CMakeLists.txt b/module/src/main/cpp/CMakeLists.txt index fe5b0c1..aacfb4e 100644 --- a/module/src/main/cpp/CMakeLists.txt +++ b/module/src/main/cpp/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.28) +cmake_minimum_required(VERSION 3.22.1) project(trick_store) find_package(cxx REQUIRED CONFIG)