From d96b886bd5facfc7b81b06fa55cecdf1562dadd7 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Mon, 3 Oct 2016 10:17:34 -0700 Subject: [PATCH] Added include paths in VSCode. --- .vscode/c_cpp_properties.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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 0000000..7c19b39 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,31 @@ +{ + "configurations": [ + { + "name": "Mac", + "includePath": [ + "/Applications/Arduino.app/Contents/Java/hardware/tools/avr/include", + "/Applications/Arduino.app/Contents/Java/hardware/arduino/avr/cores/arduino" + ], + "browse" : { + "limitSymbolsToIncludedHeaders" : true, + "databaseFilename" : "" + } + }, + { + "name": "Linux", + "includePath": ["/usr/include"], + "browse" : { + "limitSymbolsToIncludedHeaders" : true, + "databaseFilename" : "" + } + }, + { + "name": "Win32", + "includePath": ["c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include"], + "browse" : { + "limitSymbolsToIncludedHeaders" : true, + "databaseFilename" : "" + } + } + ] +}