Commit 956331e810a6bcd331cae45d44863c093ed067e2

Authored by Perry Werneck
1 parent 9622f535
Exists in master and in 1 other branch develop

Fixing win32 font scaling bug

Showing 1 changed file with 36 additions and 0 deletions   Show diff stats
.vscode/c_cpp_properties.json 0 → 100644
... ... @@ -0,0 +1,36 @@
  1 +{
  2 + "configurations": [
  3 + {
  4 + "name": "Win32",
  5 + "includePath": [
  6 + "${workspaceFolder}/**"
  7 + ],
  8 + "defines": [
  9 + "_DEBUG",
  10 + "UNICODE",
  11 + "_UNICODE"
  12 + ],
  13 + "compilerPath": "C:\\msys64\\mingw64\\bin\\gcc.exe",
  14 + "cStandard": "c11",
  15 + "cppStandard": "c++17",
  16 + "intelliSenseMode": "clang-x64"
  17 + },
  18 + {
  19 + "name": "MinGW64",
  20 + "includePath": [
  21 + "${workspaceFolder}/**",
  22 + "C:\\msys64\\mingw64\\include"
  23 + ],
  24 + "defines": [
  25 + "_DEBUG",
  26 + "UNICODE",
  27 + "_UNICODE"
  28 + ],
  29 + "compilerPath": "C:\\msys64\\mingw64\\bin\\gcc.exe",
  30 + "cStandard": "c11",
  31 + "cppStandard": "c++17",
  32 + "intelliSenseMode": "gcc-x64"
  33 + }
  34 + ],
  35 + "version": 4
  36 +}
0 37 \ No newline at end of file
... ...