From b9534c4e76392e03feac4222ea54b6d2a7d6444f Mon Sep 17 00:00:00 2001 From: Levi Burner Date: Tue, 24 May 2022 00:23:02 -0400 Subject: [PATCH] Lower cmake version to 3.16 to support Ubuntu 20.04 --- CMakeLists.txt | 2 +- sample/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a70b2879..6e80b7e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -cmake_minimum_required(VERSION 3.18) +cmake_minimum_required(VERSION 3.16) # Make CMAKE_C_VISIBILITY_PRESET work properly. set(CMAKE_POLICY_DEFAULT_CMP0063 NEW) diff --git a/sample/CMakeLists.txt b/sample/CMakeLists.txt index e284ff78..d30cbee7 100644 --- a/sample/CMakeLists.txt +++ b/sample/CMakeLists.txt @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -cmake_minimum_required(VERSION 3.18) +cmake_minimum_required(VERSION 3.16) # INTERPROCEDURAL_OPTIMIZATION is enforced when enabled. set(CMAKE_POLICY_DEFAULT_CMP0069 NEW)