diff options
| author | Gangzheng Tong <tonggangzheng@gmail.com> | 2025-06-17 18:17:38 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-18 01:17:38 +0000 |
| commit | b9799e6137fb1d173cefd823521bb70b09ac435a (patch) | |
| tree | e187e6d1bf1b62ba590c1397f6b7da06bd285060 | |
| parent | b6ab113cc3f296b55292c2385e3c229266f235a4 (diff) | |
Update CMake version to 3.26 (#7459)
Fixes: #7453
| -rw-r--r-- | .github/workflows/ci.yml | 1 | ||||
| -rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3984b1fda..5ac310510 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,6 +140,7 @@ jobs: - name: Build Slang if: steps.filter.outputs.should-run == 'true' run: | + echo "cmake version: $(cmake --version)" if [[ "${{ matrix.platform }}" = "wasm" ]]; then git clone https://github.com/emscripten-core/emsdk.git pushd emsdk diff --git a/CMakeLists.txt b/CMakeLists.txt index b8b1645ef..144303fae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.22) +cmake_minimum_required(VERSION 3.26) # Our module dir, include that now so that we can get the version automatically # from git describe |
