Prepare IntelliSense Settings

This commit is contained in:
Jaby 2022-08-28 09:20:32 +02:00
parent 0dc605076a
commit 365b31c0c1
2 changed files with 20 additions and 2 deletions

View File

@ -53,6 +53,22 @@
} }
] ]
}, },
"settings": {}, "settings": {
"C_Cpp.default.includePath": [
"./"
],
"C_Cpp.default.compilerPath": "",
"C_Cpp.default.cStandard": "c17",
"C_Cpp.default.cppStandard": "c++20",
"C_Cpp.default.intelliSenseMode": "",
"C_Cpp.default.compilerArgs": [
],
"C_Cpp.default.defines": [
""
],
"files.exclude": {
"**/*.o": true,
"**/*.dep": true
}
}
} }

View File

@ -1,3 +1,5 @@
void _start() { void _start() {
//call main here //call main here
} }