summaryrefslogtreecommitdiffhomepage
path: root/projects/VSCode/.vscode
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2019-07-30 14:00:10 +0200
committerraysan5 <[email protected]>2019-07-30 14:00:10 +0200
commit1da7e1da8c8445cd83b95c15df97cc10d8d55d65 (patch)
treec7cb4f876dbba64932301853c3b80aa05b0fb031 /projects/VSCode/.vscode
parent5775f9d224ced3e9d688c7223ab9a1de54a440eb (diff)
downloadraylib-1da7e1da8c8445cd83b95c15df97cc10d8d55d65.tar.gz
raylib-1da7e1da8c8445cd83b95c15df97cc10d8d55d65.zip
Review VSCode project
Diffstat (limited to 'projects/VSCode/.vscode')
-rw-r--r--projects/VSCode/.vscode/c_cpp_properties.json4
-rw-r--r--projects/VSCode/.vscode/tasks.json10
2 files changed, 10 insertions, 4 deletions
diff --git a/projects/VSCode/.vscode/c_cpp_properties.json b/projects/VSCode/.vscode/c_cpp_properties.json
index 496a9b2d..10881ee8 100644
--- a/projects/VSCode/.vscode/c_cpp_properties.json
+++ b/projects/VSCode/.vscode/c_cpp_properties.json
@@ -14,9 +14,9 @@
"PLATFORM_DESKTOP"
],
"compilerPath": "C:/raylib/mingw/bin/gcc.exe",
- "cStandard": "c11",
+ "cStandard": "c99",
"cppStandard": "c++14",
- "intelliSenseMode": "clang-x64"
+ "intelliSenseMode": "gcc-x64"
},
{
"name": "Mac",
diff --git a/projects/VSCode/.vscode/tasks.json b/projects/VSCode/.vscode/tasks.json
index 70337b6f..e701baad 100644
--- a/projects/VSCode/.vscode/tasks.json
+++ b/projects/VSCode/.vscode/tasks.json
@@ -26,7 +26,10 @@
"group": {
"kind": "build",
"isDefault": true
- }
+ },
+ "problemMatcher": [
+ "$gcc"
+ ]
},
{
"label": "build release",
@@ -47,7 +50,10 @@
"RAYLIB_PATH=<path_to_raylib>/raylib",
],
},
- "group": "build"
+ "group": "build",
+ "problemMatcher": [
+ "$gcc"
+ ]
}
]
}