summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfynnwilliam <fynnwilliam@gmail.com>2022-06-25 23:26:54 -0400
committerfynnwilliam <fynnwilliam@gmail.com>2022-06-25 23:26:54 -0400
commit98e9062094466a393b122440a323582fecf43b39 (patch)
tree72de1b200eda1dea4ca9a57e6ccd599cbc0c29c6
parent17cc55f24d1c56f6a5dcca6065a227ca91d01c90 (diff)
downloadvSomeIP-98e9062094466a393b122440a323582fecf43b39.tar.gz
Compatibility with older versions is not required
Compatibility with CMake < 2.8.12 will be removed from a future version of CMake.
-rw-r--r--CMakeLists.txt2
-rw-r--r--examples/CMakeLists.txt2
-rw-r--r--examples/hello_world/CMakeLists.txt2
-rw-r--r--examples/routingmanagerd/CMakeLists.txt2
-rw-r--r--tools/CMakeLists.txt2
5 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 645825c..aa83b7f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-cmake_minimum_required (VERSION 2.8.12)
+cmake_minimum_required (VERSION 2.8.12...3.23.3)
project (vsomeip)
set (VSOMEIP_NAME vsomeip3)
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index f6324e0..4325ddd 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -3,7 +3,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-cmake_minimum_required (VERSION 2.8)
+cmake_minimum_required (VERSION 2.8...3.23.2)
set(EXAMPLE_CONFIG_FILES
"../config/vsomeip.json"
diff --git a/examples/hello_world/CMakeLists.txt b/examples/hello_world/CMakeLists.txt
index 3990ab6..44bd45d 100644
--- a/examples/hello_world/CMakeLists.txt
+++ b/examples/hello_world/CMakeLists.txt
@@ -3,7 +3,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-cmake_minimum_required (VERSION 2.8.7)
+cmake_minimum_required (VERSION 2.8.7...3.23.2)
project (vSomeIPHelloWorld)
find_package(Threads REQUIRED)
diff --git a/examples/routingmanagerd/CMakeLists.txt b/examples/routingmanagerd/CMakeLists.txt
index d15949a..51504e5 100644
--- a/examples/routingmanagerd/CMakeLists.txt
+++ b/examples/routingmanagerd/CMakeLists.txt
@@ -3,7 +3,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-cmake_minimum_required (VERSION 2.8)
+cmake_minimum_required (VERSION 2.8...3.23.2)
# Daemon
add_executable(routingmanagerd routingmanagerd.cpp)
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
index cb35623..17003a5 100644
--- a/tools/CMakeLists.txt
+++ b/tools/CMakeLists.txt
@@ -3,7 +3,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-cmake_minimum_required (VERSION 2.8)
+cmake_minimum_required (VERSION 2.8...3.23.2)
# vsomeip_ctrl
add_executable(vsomeip_ctrl EXCLUDE_FROM_ALL vsomeip_ctrl.cpp)