Skip to content

Commit 0768176

Browse files
committed
cmake: fix cmake_minimum_required
1 parent 53a4a94 commit 0768176

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
2525
matrix:
2626
os: [ubuntu-latest, windows-latest]
27-
build_type: [Release]
27+
build_type: [RelWithDebInfo]
2828
c_compiler: [gcc, clang, cl]
2929
include:
3030
- os: windows-latest

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.13.0)
1+
cmake_minimum_required(VERSION 3.13)
22

33
if(POLICY CMP0077)
44
cmake_policy(SET CMP0077 NEW)

external/lzma/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0)
1+
cmake_minimum_required(VERSION 3.13)
22

33
project(lzma)
44

0 commit comments

Comments
 (0)