Skip to content

Commit 65d4fc1

Browse files
authored
Merge pull request #241 from HyperloopUPV-H8/vscode_workspace
Vscode workspace
2 parents 62d708c + 7e148b1 commit 65d4fc1

2 files changed

Lines changed: 39 additions & 0 deletions

File tree

.vscode/c_cpp_properties.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [],
9+
"compilerPath": "/usr/bin/gcc",
10+
"cStandard": "c17",
11+
"cppStandard": "c++20",
12+
"intelliSenseMode": "linux-gcc-x64",
13+
"configurationProvider": "ms-vscode.cmake-tools",
14+
"compileCommands": "compile_commands.json"
15+
}
16+
],
17+
"version": 4
18+
}

.vscode/settings.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"files.exclude": {
3+
"**/.cache": true,
4+
"**/.cproject": true,
5+
"**/.gitignore": true,
6+
"**/.mxproject": true,
7+
"**/.project": true,
8+
"**/.settings": true,
9+
"**/arm-none-eabi.cmake": true,
10+
"**/build": true,
11+
"**/cmake_install.cmake": true,
12+
"**/CMakeFiles": true,
13+
"**/CMakeLists.txt": true,
14+
"**/compile_commands.json": true,
15+
"**/Debug": true,
16+
"**/libst-lib.a": true,
17+
"**/Makefile": true
18+
},
19+
"C_Cpp.default.cppStandard": "c++20",
20+
"C_Cpp.default.cStandard": "c17"
21+
}

0 commit comments

Comments
 (0)