Skip to content

Commit

Permalink
Add case sensitive file support to C++ projects (wpilibsuite#701)
Browse files Browse the repository at this point in the history
The extension provider requires this in order to get a case sensitive file url from the extension
  • Loading branch information
ThadHouse authored Oct 11, 2024
1 parent dc02bf9 commit 20caca9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion vscode-wpilib/resources/gradle/c/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
"**/.factorypath": true,
"**/*~": true
},
"C_Cpp.default.configurationProvider": "vscode-wpilib"
"C_Cpp.default.configurationProvider": "vscode-wpilib",
"C_Cpp.caseSensitiveFileSupport": "enabled",
}
3 changes: 2 additions & 1 deletion vscode-wpilib/resources/gradle/cpp/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
"**/.factorypath": true,
"**/*~": true
},
"C_Cpp.default.configurationProvider": "vscode-wpilib"
"C_Cpp.default.configurationProvider": "vscode-wpilib",
"C_Cpp.caseSensitiveFileSupport": "enabled",
}
3 changes: 2 additions & 1 deletion vscode-wpilib/resources/gradle/cppromi/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"**/*~": true
},
"C_Cpp.default.configurationProvider": "vscode-wpilib",
"wpilib.skipSelectSimulateExtension": true
"wpilib.skipSelectSimulateExtension": true,
"C_Cpp.caseSensitiveFileSupport": "enabled",
}
3 changes: 2 additions & 1 deletion vscode-wpilib/resources/gradle/cppxrp/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"**/*~": true
},
"C_Cpp.default.configurationProvider": "vscode-wpilib",
"wpilib.skipSelectSimulateExtension": true
"wpilib.skipSelectSimulateExtension": true,
"C_Cpp.caseSensitiveFileSupport": "enabled",
}

0 comments on commit 20caca9

Please sign in to comment.