commit | cf7191dbc4cb96d591e2c5e4080d3b94e72b5613 | [log] [tgz] |
---|---|---|
author | Louis Dionne <ldionne@apple.com> | Wed Apr 22 11:15:05 2020 -0400 |
committer | Copybara-Service <copybara-worker@google.com> | Tue Sep 22 16:48:30 2020 -0700 |
tree | 4c0c9dfa7e2a796dc903c1ef5a007c4b32f71ba7 | |
parent | b8215a4a09846cc452b8efed577f6a52430e70ee [diff] |
[CMake] Bump CMake minimum version to 3.13.4 This upgrade should be friction-less because we've already been ensuring that CMake >= 3.13.4 is used. This is part of the effort discussed on llvm-dev here: http://lists.llvm.org/pipermail/llvm-dev/2020-April/140578.html Differential Revision: https://reviews.llvm.org/D78648 GitOrigin-RevId: afa1afd4108d973e059e5f5ad68cf01efe7985da
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9484526..1a6a20a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.4.3) +cmake_minimum_required(VERSION 3.13.4) if(POLICY CMP0075) cmake_policy(SET CMP0075 NEW)
diff --git a/tools/scan-build-py/tests/functional/exec/CMakeLists.txt b/tools/scan-build-py/tests/functional/exec/CMakeLists.txt index 42ee1d1..007ad45 100644 --- a/tools/scan-build-py/tests/functional/exec/CMakeLists.txt +++ b/tools/scan-build-py/tests/functional/exec/CMakeLists.txt
@@ -1,6 +1,6 @@ project(exec C) -cmake_minimum_required(VERSION 3.4.3) +cmake_minimum_required(VERSION 3.13.4) include(CheckCCompilerFlag) check_c_compiler_flag("-std=c99" C99_SUPPORTED)