From 4c7ac2dddd5e00756ee547363bb64525204f2638 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 8 Nov 2021 15:28:43 -0500 Subject: [PATCH] cmake: Require version 3.19 or newer for VS2019 and Xcode 12+ support --- CMakeLists.txt.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt.in b/CMakeLists.txt.in index 3407fe136..1440f5674 100644 --- a/CMakeLists.txt.in +++ b/CMakeLists.txt.in @@ -36,7 +36,7 @@ # # The below requirements must be met to build this CEF binary distribution. # -# - CMake version 2.8.12.1 or newer. +# - CMake version 3.19 or newer. # # - Linux requirements: # Currently supported distributions include Debian 10 (Buster), Ubuntu 18 @@ -132,7 +132,8 @@ # Global setup. # -cmake_minimum_required(VERSION 2.8.12.1) +# For VS2019 and Xcode 12+ support. +cmake_minimum_required(VERSION 3.19) # Only generate Debug and Release configuration types. set(CMAKE_CONFIGURATION_TYPES Debug Release)