Skip to content

Commit

Permalink
Upgrade cmake_minimum_required version 3.0.0 -> 3.5.0 (#3805)
Browse files Browse the repository at this point in the history
* Update cmakeProject.ts

Upgrade cmake_minimum_required version 3.0.0 -> 3.5.0

* Update CHANGELOG.md

---------

Co-authored-by: Garrett Campbell <[email protected]>
  • Loading branch information
LiuZengqiang and gcampbell-msft authored Jun 24, 2024
1 parent 563e3e0 commit d1d5c31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Features:

- Add support for CMake Language Support natively in this extension. [#3559](https://github.com/microsoft/vscode-cmake-tools/issues/3559)
- Upgrade `cmake_minimum_required` version 3.0.0 -> 3.5.0. [#3793](https://github.com/microsoft/vscode-cmake-tools/issues/3793)

Bug Fixes:

Expand Down
2 changes: 1 addition & 1 deletion src/cmakeProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2946,7 +2946,7 @@ export class CMakeProject {
}

let init = [
'cmake_minimum_required(VERSION 3.0.0)',
'cmake_minimum_required(VERSION 3.5.0)',
`project(${projectName} VERSION 0.1.0 LANGUAGES ${langName})`,
'\n'
].join('\n');
Expand Down

0 comments on commit d1d5c31

Please sign in to comment.