Commit 1321bb9f01ff1bf0b8ec8852d5e71b5d8bbee353

Authored by Perry Werneck
1 parent 434d8b83
Exists in master

Adding vscode settings.

Showing 1 changed file with 24 additions and 0 deletions   Show diff stats
.vscode/c_cpp_properties.json 0 → 100644
... ... @@ -0,0 +1,24 @@
  1 +{
  2 + "configurations": [
  3 + {
  4 + "name": "Win32",
  5 + "includePath": [
  6 + "${workspaceFolder}/**",
  7 + "${env:PW3270_SDK_PATH}/include",
  8 + "${vcpkgRoot}/x64-windows-static/include"
  9 + ],
  10 + "defines": [
  11 + "_DEBUG",
  12 + "DEBUG",
  13 + "UNICODE",
  14 + "_UNICODE"
  15 + ],
  16 + "windowsSdkVersion": "10.0.18362.0",
  17 + "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.23.28105/bin/Hostx64/x64/cl.exe",
  18 + "cStandard": "c11",
  19 + "cppStandard": "c++17",
  20 + "intelliSenseMode": "msvc-x64"
  21 + }
  22 + ],
  23 + "version": 4
  24 +}
0 25 \ No newline at end of file
... ...