Add VS Code files

This commit is contained in:
Darren VanBuren 2018-04-05 13:53:19 -07:00
parent 3ac4034527
commit 7c2ba102a3
2 changed files with 49 additions and 0 deletions

22
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"/usr/include",
"/home/onekopaka/Downloads/VulkanSDK/1.1.70.1/x86_64/include"
],
"intelliSenseMode": "clang-x64",
"browse": {
"path": [
"/usr/include",
"/home/onekopaka/Downloads/VulkanSDK/1.1.70.1/x86_64/include"
]
},
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 3
}

27
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/VulkanTest",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}