summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt8
-rw-r--r--samples/echobot-curl-client/CMakeLists.txt2
-rw-r--r--samples/echobot-setmycommands/CMakeLists.txt2
-rw-r--r--samples/echobot-submodule/CMakeLists.txt2
-rw-r--r--samples/echobot-webhook-server/CMakeLists.txt2
-rw-r--r--samples/echobot/CMakeLists.txt2
-rw-r--r--samples/inline-keyboard/CMakeLists.txt2
-rw-r--r--samples/photo/CMakeLists.txt2
-rw-r--r--samples/received-text-processing/CMakeLists.txt2
-rw-r--r--samples/reply-keyboard/CMakeLists.txt2
10 files changed, 13 insertions, 13 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b2a2b09..b50b03a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(TgBot)
# options
@@ -51,7 +51,7 @@ find_package(OpenSSL REQUIRED)
include_directories(${OPENSSL_INCLUDE_DIR})
## curl
-find_package(CURL 7.64.0)
+find_package(CURL 7.58.0)
if (CURL_FOUND)
include_directories(${CURL_INCLUDE_DIRS})
add_definitions(-DHAVE_CURL)
@@ -60,9 +60,9 @@ endif()
## boost
set(Boost_USE_MULTITHREADED ON)
if (ENABLE_TESTS)
- find_package(Boost 1.67.0 COMPONENTS system unit_test_framework REQUIRED)
+ find_package(Boost 1.65.1 COMPONENTS system unit_test_framework REQUIRED)
else()
- find_package(Boost 1.67.0 COMPONENTS system REQUIRED)
+ find_package(Boost 1.65.1 COMPONENTS system REQUIRED)
endif()
include_directories(${Boost_INCLUDE_DIR})
link_directories(${Boost_LIBRARY_DIR_RELEASE})
diff --git a/samples/echobot-curl-client/CMakeLists.txt b/samples/echobot-curl-client/CMakeLists.txt
index d9347a5..74b45c5 100644
--- a/samples/echobot-curl-client/CMakeLists.txt
+++ b/samples/echobot-curl-client/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(echobot-curl-client)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/echobot-setmycommands/CMakeLists.txt b/samples/echobot-setmycommands/CMakeLists.txt
index e6c63eb..f8d4ad2 100644
--- a/samples/echobot-setmycommands/CMakeLists.txt
+++ b/samples/echobot-setmycommands/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(echobot-setmycommands)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/echobot-submodule/CMakeLists.txt b/samples/echobot-submodule/CMakeLists.txt
index 8561602..e7a16f1 100644
--- a/samples/echobot-submodule/CMakeLists.txt
+++ b/samples/echobot-submodule/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(echobot-submodule)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/echobot-webhook-server/CMakeLists.txt b/samples/echobot-webhook-server/CMakeLists.txt
index ca56c53..3f4e8b8 100644
--- a/samples/echobot-webhook-server/CMakeLists.txt
+++ b/samples/echobot-webhook-server/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(echobot-webhook-server)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/echobot/CMakeLists.txt b/samples/echobot/CMakeLists.txt
index 26897b6..20f5297 100644
--- a/samples/echobot/CMakeLists.txt
+++ b/samples/echobot/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(echobot)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/inline-keyboard/CMakeLists.txt b/samples/inline-keyboard/CMakeLists.txt
index 76ea949..01d8718 100644
--- a/samples/inline-keyboard/CMakeLists.txt
+++ b/samples/inline-keyboard/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(inline-keyboard)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/photo/CMakeLists.txt b/samples/photo/CMakeLists.txt
index 6885bf7..a4edadc 100644
--- a/samples/photo/CMakeLists.txt
+++ b/samples/photo/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(photo)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/received-text-processing/CMakeLists.txt b/samples/received-text-processing/CMakeLists.txt
index d1f08d3..0c2a550 100644
--- a/samples/received-text-processing/CMakeLists.txt
+++ b/samples/received-text-processing/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+ccmake_minimum_required(VERSION 3.10.2)
project(received-text-processing)
set(CMAKE_CXX_STANDARD 14)
diff --git a/samples/reply-keyboard/CMakeLists.txt b/samples/reply-keyboard/CMakeLists.txt
index 845b038..4510692 100644
--- a/samples/reply-keyboard/CMakeLists.txt
+++ b/samples/reply-keyboard/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.13.4)
+cmake_minimum_required(VERSION 3.10.2)
project(reply-keyboard)
set(CMAKE_CXX_STANDARD 14)