From 7082f348eebddbed6eec74abb5ac245f8840adfd Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Mon, 1 Jun 2020 17:01:13 +0200 Subject: [PATCH] add local libraries to c++ intellisense --- .vscode/c_cpp_properties.json | 3 ++- .vscode/settings.json | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 1a82b50..a95f63f 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -7,7 +7,8 @@ "/usr/share/arduino/hardware/arduino/avr/**", "/usr/share/avr/avr/**", "/usr/share/avr/lib/**", - "/usr/share/avr/lib/gcc/avr/8.3.0/include/**" + "/usr/share/avr/lib/gcc/avr/8.3.0/include/**", + "/home/xdrm-brackets/Arduino/libraries/**" ], "defines": [], "compilerPath": "/usr/bin/gcc", diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..31811f6 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "*.tcc": "cpp" + } +} \ No newline at end of file