summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2023-08-24 09:22:02 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2023-08-24 09:22:02 +0200
commitdf29f1bdc2b120b69879a3c6f5e7d7e541eb1983 (patch)
tree9d53d8ba454f801d57003135d82d705f71043717
parent7763db3ce562553c5f52ba4d60459cc7a5d4964d (diff)
downloadcssh-df29f1bdc2b120b69879a3c6f5e7d7e541eb1983.tar.gz
cssh-df29f1bdc2b120b69879a3c6f5e7d7e541eb1983.tar.bz2
increased minimal version of cmake to 3.5
-rw-r--r--3rdParty/CMakeLists.txt2
-rw-r--r--3rdParty/linenoise/CMakeLists.txt2
-rw-r--r--CMakeLists.txt2
-rw-r--r--src/CMakeLists.txt2
4 files changed, 4 insertions, 4 deletions
diff --git a/3rdParty/CMakeLists.txt b/3rdParty/CMakeLists.txt
index 0fb8cd6..1669777 100644
--- a/3rdParty/CMakeLists.txt
+++ b/3rdParty/CMakeLists.txt
@@ -1,3 +1,3 @@
-cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
add_subdirectory(linenoise)
diff --git a/3rdParty/linenoise/CMakeLists.txt b/3rdParty/linenoise/CMakeLists.txt
index a12d9db..c8a264d 100644
--- a/3rdParty/linenoise/CMakeLists.txt
+++ b/3rdParty/linenoise/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
include_directories(${libssh_INCLUDE_PATH})
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 22ef162..5c4e472 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 55163e2..014c58d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
include_directories(
${libssh_INCLUDE_PATH}