From 272fc1348ea9a13303828744a7f21fd269e87227 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20H=C3=A4rdeman?= Date: Sun, 5 Oct 2025 14:21:58 +0200 Subject: [PATCH] lua: CMakeLists: drop redundant cmake_minimum_required MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The Lua module depends on the parent uci project and can't be build independently. Drop redundant cmake_minimum_required from lua/CMakeLists.txt and inherit the version from the parent CMake project to keep version consistency. Signed-off-by: David Härdeman [ improve commit description ] Link: https://github.com/openwrt/uci/pull/7 Signed-off-by: Christian Marangi --- lua/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/CMakeLists.txt b/lua/CMakeLists.txt index 6873917..efdbfff 100644 --- a/lua/CMakeLists.txt +++ b/lua/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 3.10) - PROJECT(uci C) SET(CMAKE_INSTALL_PREFIX /) -- 2.30.2