From 7c2ba102a373fbf8be3c63554e26c1633af2d300 Mon Sep 17 00:00:00 2001 From: Darren VanBuren Date: Thu, 5 Apr 2018 13:53:19 -0700 Subject: [PATCH] Add VS Code files --- .vscode/c_cpp_properties.json | 22 ++++++++++++++++++++++ .vscode/launch.json | 27 +++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/launch.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..94dcc0a --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -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 +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a494455 --- /dev/null +++ b/.vscode/launch.json @@ -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 + } + ] + } + ] +} \ No newline at end of file