sci-ml/gemmlowp: fix min cmake version

Closes: https://bugs.gentoo.org/964961
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone 2025-11-16 09:29:22 +01:00
parent d4e7658a94
commit 34d88e837b
No known key found for this signature in database
GPG Key ID: FBE5925C5B02CE58
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- a/CMakeLists.txt 2025-11-16 09:21:36.261871093 +0100
+++ b/CMakeLists.txt 2025-11-16 09:21:58.407948596 +0100
@@ -2,7 +2,7 @@
# Copyright © 2016 Zhou Mo <cdluminate@gmail.com>
# Licence Apache-2.0
-cmake_minimum_required(VERSION 3.7)
+cmake_minimum_required(VERSION 3.10)
# Project
project(gemmlowp C CXX)

View File

@ -20,6 +20,8 @@ IUSE="test"
BDEPEND="test? ( dev-cpp/gtest )"
RESTRICT="!test? ( test )"
PATCHES=( "${FILESDIR}"/${P}-cmake.patch )
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test ON OFF)