blob: 516e65aaea78a4b3372c5721a41abe2b94c1920f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
"configurations": [
{
"name": "ESP-IDF",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "macos-gcc-x64",
"includePath": [
"${config:idf.espIdfPath}/components/**",
"${config:idf.espIdfPath}/../esp-homekit-sdk/components/**",
"${workspaceFolder}/**"
],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"browse": {
"path": [
"${config:idf.espIdfPath}/components",
"${config:idf.espIdfPath}/../esp-homekit-sdk/components",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": false
}
}
],
"version": 4
}
|