From 442ad1b5326276fe68b449fb5d87614fc68964d5 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Thu, 9 Jun 2022 21:17:34 +0300 Subject: [PATCH] Updated vscode settings for debug --- .vscode/c_cpp_properties.json | 19 +++++++++++++++++++ .vscode/settings.json | 3 ++- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..b486e11 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,19 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/local/lib/wx/include/gtk3-unicode-3.1", + "/usr/local/include/wx-3.1" + ], + "defines": [], + "compilerPath": "/usr/bin/clang", + "cStandard": "c17", + "cppStandard": "c++14", + "intelliSenseMode": "linux-clang-x64", + "configurationProvider": "ms-vscode.makefile-tools" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 7260e29..58864c2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -79,7 +79,8 @@ "streambuf": "cpp", "thread": "cpp", "valarray": "cpp", - "variant": "cpp" + "variant": "cpp", + "*.xpm": "cpp" }, "lldb.displayFormat": "auto", "lldb.showDisassembly": "auto",