From 86fbe97e86ad38cdf67833c608df1b34314e700f Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes Date: Sun, 22 Aug 2021 11:06:24 -0300 Subject: [PATCH] Add VSCode C++ config for better editing experience. --- .vscode/c_cpp_properties.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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 0000000000..2ac971deee --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,18 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "DEV_BUILD" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "linux-clang-x64" + } + ], + "version": 4 +}