Skip to content

Commit

Permalink
Fix lowercase include paths on Mac (#4325)
Browse files Browse the repository at this point in the history
* Fix lowercase include paths on Mac

* Update CHANGELOG for version 1.21

---------

Co-authored-by: Garrett Campbell <86264750+gcampbell-msft@users.noreply.github.com>
  • Loading branch information
tringenbach and gcampbell-msft authored Mar 10, 2025
1 parent 3ab4e0d commit 4dc5400
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Features:

- Add an option to specify the launch target for debugging CTest tests. [#4273](https://github.com/microsoft/vscode-cmake-tools/pull/4273)

Improvements:

- No longer convert paths on lowercase on MacOS to enable cpp tools to resolve them. [#4325](https://github.com/microsoft/vscode-cmake-tools/pull/4325) [@tringenbach](https://github.com/tringenbach)

Bug Fixes:

- Fix bug that makes `Configure Task` lists only first folder in workspace. [#3232](https//github.com/microsoft/vscode-cmake-tools/issues/3232)
Expand Down
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export function normalizePath(p: string, opt: PathNormalizationOptions): string
norm = norm.toLocaleLowerCase();
break;
case 'platform':
if (process.platform === 'win32' || process.platform === 'darwin') {
if (process.platform === 'win32') {
norm = norm.toLocaleLowerCase();
}
break;
Expand Down

0 comments on commit 4dc5400

Please sign in to comment.