Skip to content

Commit 6422f8c

Browse files
committed
Increase minimal required CMake version to 3.5.
This removes a warning from recent CMake versions that compatibility with CMake versions older than 3.5 is soon to be removed.
1 parent 40d3ac7 commit 6422f8c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
name: Compile and test
1+
name: Build and Test
22

33
on:
44
- pull_request
55
- push
66

77
jobs:
8-
build:
8+
linux:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Configure
1313
run: cmake -DCMAKE_BUILD_TYPE=Release -G 'Unix Makefiles' .
1414
- name: Build

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
cmake_minimum_required(VERSION 3.1)
2+
cmake_minimum_required(VERSION 3.5)
33
project(hsluv-c C)
44

55

0 commit comments

Comments
 (0)