Skip to content

Commit

Permalink
bump minimum CMake version
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmrichard committed Dec 6, 2023
1 parent 15199e3 commit 4766a2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
cmake: [3.14.7, latest, latestrc]
cmake: [3.19.0, latest, latestrc]
env:
cmake_version: ${{ matrix.cmake }}
os: Linux-x86_64
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Configure Project
run: |
cmake -H. -Bbuild -DBUILD_TESTING=ON
- name: Run Unit Tests
run: |
cd build
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#3.14 needed for FetchContent_MakeAvailable()
set(_ct_min_cmake_version "3.14" CACHE INTERNAL "")
#3.19 needed because of CMaize
set(_ct_min_cmake_version "3.19" CACHE INTERNAL "")
cmake_minimum_required(VERSION "${_ct_min_cmake_version}")
project(CMakeTest VERSION 1.0.0 LANGUAGES NONE)

Expand Down

0 comments on commit 4766a2d

Please sign in to comment.