-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: patch cef to enable all configurations, and reduce required cmak…
…e version
- Loading branch information
Showing
4 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- CMakeLists.txt 2023-11-24 09:53:18.695186368 +0000 | ||
+++ CMakeLists.txt 2023-11-24 09:54:17.970959700 +0000 | ||
@@ -132,11 +132,8 @@ | ||
# Global setup. | ||
# | ||
|
||
-# For VS2022 and Xcode 12+ support. | ||
-cmake_minimum_required(VERSION 3.21) | ||
- | ||
-# Only generate Debug and Release configuration types. | ||
-set(CMAKE_CONFIGURATION_TYPES Debug Release) | ||
+# VS2022 and Xcode 12+ support needs 3.21, but ubuntu22.04 ships with 3.20 | ||
+cmake_minimum_required(VERSION 3.20) | ||
|
||
# Project name. | ||
# TODO: Change this line to match your project name when you copy this file. |