diff options
| author | David Härdeman | 2025-10-05 12:21:58 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-05 12:33:54 +0000 |
| commit | 272fc1348ea9a13303828744a7f21fd269e87227 (patch) | |
| tree | d0de9c9a4b4ae5d78d8ab0578d438498712756f6 | |
| parent | a072095389595225af6996d33e1dba212af35f38 (diff) | |
| download | uci-272fc1348ea9a13303828744a7f21fd269e87227.tar.gz | |
lua: CMakeLists: drop redundant cmake_minimum_required
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 <david@hardeman.nu>
[ improve commit description ]
Link: https://github.com/openwrt/uci/pull/7
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | lua/CMakeLists.txt | 2 |
1 files changed, 0 insertions, 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 /) |