Configure workspace

This commit is contained in:
2022-11-27 09:25:31 +01:00
parent c8dc4e7962
commit 363c9568a7
6 changed files with 77 additions and 1 deletions

25
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/utility/unity/core",
"${workspaceFolder}/utility/unity/fixture",
// "${workspaceFolder}/test/oled/helpers/inc",
// "${workspaceFolder}/test/oled/",
"${workspaceFolder}/cmd_parser/",
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\Apps\\mingw64\\bin\\gcc.exe",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}