@@ -261,7 +261,7 @@ func (b *Builder) preprocess() error {
261261 b .Progress .CompleteStep ()
262262 b .Progress .PushProgress ()
263263
264- if err := b .PrepareSketchBuildPath (); err != nil {
264+ if err := b .prepareSketchBuildPath (); err != nil {
265265 return err
266266 }
267267 b .Progress .CompleteStep ()
@@ -284,12 +284,12 @@ func (b *Builder) preprocess() error {
284284 b .Progress .CompleteStep ()
285285 b .Progress .PushProgress ()
286286
287- b .WarnAboutArchIncompatibleLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
287+ b .warnAboutArchIncompatibleLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
288288 b .Progress .CompleteStep ()
289289 b .Progress .PushProgress ()
290290
291291 b .logIfVerbose (false , tr ("Generating function prototypes..." ))
292- if err := b .PreprocessSketch (b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
292+ if err := b .preprocessSketch (b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
293293 return err
294294 }
295295 b .Progress .CompleteStep ()
@@ -331,20 +331,20 @@ func (b *Builder) Build() error {
331331 b .Progress .CompleteStep ()
332332 b .Progress .PushProgress ()
333333
334- b .PrintUsedLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
334+ b .printUsedLibraries (b .SketchLibrariesDetector .ImportedLibraries ())
335335 b .Progress .CompleteStep ()
336336 b .Progress .PushProgress ()
337337
338338 if buildErr != nil {
339339 return buildErr
340340 }
341- if err := b .ExportProjectCMake (b .SketchLibrariesDetector .ImportedLibraries (), b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
341+ if err := b .exportProjectCMake (b .SketchLibrariesDetector .ImportedLibraries (), b .SketchLibrariesDetector .IncludeFolders ()); err != nil {
342342 return err
343343 }
344344 b .Progress .CompleteStep ()
345345 b .Progress .PushProgress ()
346346
347- if err := b .Size (); err != nil {
347+ if err := b .size (); err != nil {
348348 return err
349349 }
350350 b .Progress .CompleteStep ()
@@ -381,13 +381,13 @@ func (b *Builder) build() error {
381381 b .Progress .CompleteStep ()
382382 b .Progress .PushProgress ()
383383
384- if err := b .RemoveUnusedCompiledLibraries (b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
384+ if err := b .removeUnusedCompiledLibraries (b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
385385 return err
386386 }
387387 b .Progress .CompleteStep ()
388388 b .Progress .PushProgress ()
389389
390- if err := b .BuildLibraries (b .SketchLibrariesDetector .IncludeFolders (), b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
390+ if err := b .buildLibraries (b .SketchLibrariesDetector .IncludeFolders (), b .SketchLibrariesDetector .ImportedLibraries ()); err != nil {
391391 return err
392392 }
393393 b .Progress .CompleteStep ()
@@ -406,7 +406,7 @@ func (b *Builder) build() error {
406406 b .Progress .CompleteStep ()
407407 b .Progress .PushProgress ()
408408
409- if err := b .BuildCore (); err != nil {
409+ if err := b .buildCore (); err != nil {
410410 return err
411411 }
412412 b .Progress .CompleteStep ()
@@ -425,7 +425,7 @@ func (b *Builder) build() error {
425425 b .Progress .CompleteStep ()
426426 b .Progress .PushProgress ()
427427
428- if err := b .Link (); err != nil {
428+ if err := b .link (); err != nil {
429429 return err
430430 }
431431 b .Progress .CompleteStep ()
0 commit comments