diff options
| author | David Härdeman | 2025-10-05 15:48:37 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-07 12:19:52 +0000 |
| commit | 7a3863acfb15413d9346d6e7b0c951b8fba72220 (patch) | |
| tree | aa3f00dcb5fdd3e7be449b978dbae579cfebab1b | |
| parent | c163d7ab8cdc248a4f82efe339ba29fd8001b5e7 (diff) | |
| download | libubox-7a3863acfb15413d9346d6e7b0c951b8fba72220.tar.gz | |
lua: CMakeLists: drop redundant cmake_minimum_required
The Lua module depends on the parent libubox project and can't be built
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>
Link: https://github.com/openwrt/libubox/pull/21
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 4ec4e39..104a56a 100644 --- a/lua/CMakeLists.txt +++ b/lua/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 3.10) - PROJECT(uloop C) SET(CMAKE_INSTALL_PREFIX /) |