@@ -22,6 +22,7 @@ import (
22
22
23
23
"github.com/arduino/arduino-cli/internal/arduino/cores"
24
24
"github.com/arduino/arduino-cli/internal/arduino/libraries"
25
+ "github.com/arduino/arduino-cli/internal/arduino/sketch"
25
26
"github.com/arduino/arduino-cli/internal/arduino/utils"
26
27
"github.com/arduino/arduino-cli/internal/i18n"
27
28
"github.com/schollz/closestmatch"
@@ -36,7 +37,7 @@ type Cpp struct {
36
37
var tr = i18n .Tr
37
38
38
39
// NewCppResolver creates a new Cpp resolver
39
- func NewCppResolver (allLibs []* libraries.Library , targetPlatform , actualPlatform * cores.PlatformRelease ) * Cpp {
40
+ func NewCppResolver (allLibs []* libraries.Library , sk * sketch. Sketch , targetPlatform , actualPlatform * cores.PlatformRelease ) * Cpp {
40
41
resolver := & Cpp {
41
42
headers : map [string ]libraries.List {},
42
43
}
@@ -46,10 +47,17 @@ func NewCppResolver(allLibs []*libraries.Library, targetPlatform, actualPlatform
46
47
if actualPlatform != targetPlatform {
47
48
resolver .ScanPlatformLibraries (allLibs , actualPlatform )
48
49
}
49
-
50
+ resolver . ScanSketchLibraries ( sk )
50
51
return resolver
51
52
}
52
53
54
+ // ScanSketchLibraries loads libraries bundled with the sketch
55
+ func (resolver * Cpp ) ScanSketchLibraries (sk * sketch.Sketch ) {
56
+ for _ , lib := range sk .VendoredLibraries () {
57
+ _ = resolver .ScanLibrary (lib )
58
+ }
59
+ }
60
+
53
61
// ScanIDEBuiltinLibraries reads ide-builtin librariers loaded in the LibrariesManager to find
54
62
// and cache all C++ headers for later retrieval.
55
63
func (resolver * Cpp ) ScanIDEBuiltinLibraries (allLibs []* libraries.Library ) {
0 commit comments