Skip to content

Commit cec677d

Browse files
tringenbachgcampbell-msft
authored andcommitted
Fix lowercase include paths on Mac (microsoft#4325)
* Fix lowercase include paths on Mac * Update CHANGELOG for version 1.21 --------- Co-authored-by: Garrett Campbell <[email protected]>
1 parent 63357d2 commit cec677d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Features:
66

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

9+
Improvements:
10+
11+
- 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)
12+
913
Bug Fixes:
1014

1115
- Fix bug that makes `Configure Task` lists only first folder in workspace. [#3232](https//github.com/microsoft/vscode-cmake-tools/issues/3232)

src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export function normalizePath(p: string, opt: PathNormalizationOptions): string
111111
norm = norm.toLocaleLowerCase();
112112
break;
113113
case 'platform':
114-
if (process.platform === 'win32' || process.platform === 'darwin') {
114+
if (process.platform === 'win32') {
115115
norm = norm.toLocaleLowerCase();
116116
}
117117
break;

0 commit comments

Comments
 (0)