Skip to content

Commit 0bf8e69

Browse files
authored
Merge pull request #233 from muzarski/bump-cmake-version
cmake: bump minimum version to 3.15
2 parents 121726a + fbe516d commit 0bf8e69

38 files changed

+38
-38
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.10)
1+
cmake_minimum_required(VERSION 3.15)
22
project(cppdriverv2 C CXX)
33

44
set(CASS_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR})

cmake/ClangFormat.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Format and verify formatting using clang-format
33
#
4-
cmake_minimum_required(VERSION 2.6.4)
4+
cmake_minimum_required(VERSION 3.15)
55

66
include(FindPackageHandleStandardArgs)
77

cmake/ExternalProject-OpenSSL.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
14+
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
1515
include(ExternalProject)
1616
include(Windows-Environment)
1717
if(NOT MSVC_ENVIRONMENT_SCRIPT)

cmake/ExternalProject-libssh2.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
14+
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
1515
include(ExternalProject)
1616
include(Windows-Environment)
1717

cmake/ExternalProject-libuv.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
14+
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
1515
include(ExternalProject)
1616
include(Windows-Environment)
1717

cmake/ExternalProject-zlib.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
14+
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
1515
include(ExternalProject)
1616
include(Windows-Environment)
1717

examples/async/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.6.4)
1+
cmake_minimum_required(VERSION 3.15)
22

33
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ".")
44
set(PROJECT_EXAMPLE_NAME async)

examples/auth/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.6.4)
1+
cmake_minimum_required(VERSION 3.15)
22

33
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ".")
44
set(PROJECT_EXAMPLE_NAME auth)

examples/basic/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.6.4)
1+
cmake_minimum_required(VERSION 3.15)
22

33
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ".")
44
set(PROJECT_EXAMPLE_NAME basic)

examples/batch/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.6.4)
1+
cmake_minimum_required(VERSION 3.15)
22

33
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ".")
44
set(PROJECT_EXAMPLE_NAME batch)

0 commit comments

Comments
 (0)