diff options
| author | David Härdeman | 2025-10-05 15:42:59 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-07 12:19:15 +0000 |
| commit | f247c18f8a552b87f74427df5ef8c43f8f942628 (patch) | |
| tree | 6d73b2c7e618cd3acbc192a4ee5faf0750fb4a2c | |
| parent | b462895d3157c0f2a87fb4a0341eead4202ce272 (diff) | |
| download | ubus-f247c18f8a552b87f74427df5ef8c43f8f942628.tar.gz | |
examples: CMakeLists: drop redundant cmake_minimum_required
The examples depend on the parent ubus project and can't be built
independently.
Drop redundant cmake_minimum_required from examples/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/ubus/pull/7
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | examples/CMakeLists.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index d808b22..bbcf7ae 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 3.10) - ADD_DEFINITIONS(-I..) INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..) |