From 4e42ca1ef501a1e29d25975d735198fa5fad0903 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Sat, 18 Feb 2023 18:48:43 -0500 Subject: [PATCH] Bump up minimum cmake version to 3.10.2 --- .github/workflows/ci.yml | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d956f78..d1a5bd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: name: Check compatibility with minimum cmake version runs-on: ubuntu-latest env: - CMAKE_VERSION: 3.6.0 + CMAKE_VERSION: 3.10.2 steps: - uses: actions/checkout@v2 with: diff --git a/CMakeLists.txt b/CMakeLists.txt index 3eb016d..9ac95fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ # You should have received a copy of the CC0 Public Domain Dedication along with # this software. If not, see . -cmake_minimum_required(VERSION 3.6.0) # version supported by android studio +cmake_minimum_required(VERSION 3.10.2) # version supported by android studio project(bgfx) cmake_policy(SET CMP0054 NEW)