Merge pull request #19467 from chwarr/cmake-min-3.1.3

Bump min CMake to 3.5.1 to match Google benchmark
pull/13465/head
Jan Tattermusch 6 years ago committed by GitHub
commit df998f7023
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CMakeLists.txt
  2. 2
      examples/cpp/helloworld/CMakeLists.txt
  3. 2
      examples/cpp/helloworld/cmake_externalproject/CMakeLists.txt
  4. 2
      templates/CMakeLists.txt.template

@ -21,7 +21,7 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.5.1)
set(PACKAGE_NAME "grpc")
set(PACKAGE_VERSION "1.23.0-dev")

@ -17,7 +17,7 @@
# See cmake_externalproject/CMakeLists.txt for all-in-one cmake build
# that automatically builds all the dependencies before building helloworld.
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.5.1)
project(HelloWorld C CXX)

@ -20,7 +20,7 @@
# including the "helloworld" project itself.
# See https://blog.kitware.com/cmake-superbuilds-git-submodules/
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.5.1)
# Project
project(HelloWorld-SuperBuild C CXX)

@ -69,7 +69,7 @@
return 'endif()\n'
%>
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.5.1)
set(PACKAGE_NAME "grpc")
set(PACKAGE_VERSION "${settings.cpp_version}")

Loading…
Cancel
Save