-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesp.pri
5786 lines (5784 loc) · 415 KB
/
esp.pri
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# ESP-IDF include paths, headers and sources.
#
INCLUDEPATH += \
$${IDF_PATH}/components/app_trace \
$${IDF_PATH}/components/app_trace/gcov \
$${IDF_PATH}/components/app_trace/include \
$${IDF_PATH}/components/app_trace/sys_view/Config \
$${IDF_PATH}/components/app_trace/sys_view/esp32 \
$${IDF_PATH}/components/app_trace/sys_view/ext \
$${IDF_PATH}/components/app_trace/sys_view/Sample/Config \
$${IDF_PATH}/components/app_trace/sys_view/Sample/OS \
$${IDF_PATH}/components/app_trace/sys_view/SEGGER \
$${IDF_PATH}/components/app_trace/test \
$${IDF_PATH}/components/app_update \
$${IDF_PATH}/components/app_update/include \
$${IDF_PATH}/components/app_update/test \
$${IDF_PATH}/components/asio/asio/asio/include/asio \
$${IDF_PATH}/components/asio/asio/asio/include/asio/detail \
$${IDF_PATH}/components/asio/asio/asio/include/asio/detail/impl \
$${IDF_PATH}/components/asio/asio/asio/include/asio/experimental \
$${IDF_PATH}/components/asio/asio/asio/include/asio/experimental/impl \
$${IDF_PATH}/components/asio/asio/asio/include/asio/generic \
$${IDF_PATH}/components/asio/asio/asio/include/asio/generic/detail \
$${IDF_PATH}/components/asio/asio/asio/include/asio/impl \
$${IDF_PATH}/components/asio/asio/asio/include/asio/ip \
$${IDF_PATH}/components/asio/asio/asio/include/asio/ip/detail \
$${IDF_PATH}/components/asio/asio/asio/include/asio/ip/impl \
$${IDF_PATH}/components/asio/asio/asio/include/asio/local \
$${IDF_PATH}/components/asio/asio/asio/include/asio/local/detail \
$${IDF_PATH}/components/asio/asio/asio/include/asio/posix \
$${IDF_PATH}/components/asio/asio/asio/include/asio/ssl \
$${IDF_PATH}/components/asio/asio/asio/include/asio/ssl/detail \
$${IDF_PATH}/components/asio/asio/asio/include/asio/ssl/impl \
$${IDF_PATH}/components/asio/asio/asio/include/asio/ts \
$${IDF_PATH}/components/asio/asio/asio/include/asio/windows \
$${IDF_PATH}/components/asio/asio/asio/include \
$${IDF_PATH}/components/asio/asio/asio/src \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/allocation \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/buffers \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/chat \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/echo \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/fork \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/http/client \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/http/server \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/http/server2 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/http/server3 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/http/server4 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/icmp \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/invocation \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/iostreams \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/local \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/multicast \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/nonblocking \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/porthopper \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/serialization \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/services \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/socks4 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/spawn \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/ssl \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/timeouts \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/timers \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/daytime1 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/daytime2 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/daytime3 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/daytime4 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/daytime5 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/daytime6 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/daytime7 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/timer1 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/timer2 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/timer3 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/timer4 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/tutorial/timer5 \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp03/windows \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/allocation \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/buffers \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/chat \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/echo \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/executors \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/fork \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/futures \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/handler_tracking \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/http/server \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/invocation \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/iostreams \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/local \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/multicast \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/nonblocking \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp11/spawn \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp14/echo \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp14/executors \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp14/iostreams \
$${IDF_PATH}/components/asio/asio/asio/src/examples/cpp17/coroutines_ts \
$${IDF_PATH}/components/asio/asio/asio/src/tests/latency \
$${IDF_PATH}/components/asio/asio/asio/src/tests/performance \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/archetypes \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/generic \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/ip \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/local \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/posix \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/ssl \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/ts \
$${IDF_PATH}/components/asio/asio/asio/src/tests/unit/windows \
$${IDF_PATH}/components/asio/port/include \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/external_libs/jsmn \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/include \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/platform/linux/common \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/platform/linux/mbedtls \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/platform/linux/pthread \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/samples/linux/jobs_sample \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/samples/linux/shadow_sample \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/samples/linux/shadow_sample_console_echo \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/samples/linux/subscribe_publish_library_sample \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/samples/linux/subscribe_publish_sample \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/src \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/tests/integration/include \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/tests/integration/multithreadingTest \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/tests/integration/src \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/tests/unit/include \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/tests/unit/src \
$${IDF_PATH}/components/aws_iot/aws-iot-device-sdk-embedded-C/tests/unit/tls_mock \
$${IDF_PATH}/components/bootloader/subproject/components/micro-ecc/micro-ecc \
$${IDF_PATH}/components/bootloader/subproject/components/micro-ecc/micro-ecc/test \
$${IDF_PATH}/components/bootloader/subproject/main \
$${IDF_PATH}/components/bootloader_support/include \
$${IDF_PATH}/components/bootloader_support/include_bootloader \
$${IDF_PATH}/components/bootloader_support/src \
$${IDF_PATH}/components/bootloader_support/src/esp32 \
$${IDF_PATH}/components/bootloader_support/src/idf \
$${IDF_PATH}/components/bootloader_support/test \
$${IDF_PATH}/components/bt/common/btc/core \
$${IDF_PATH}/components/bt/common/btc/include/btc \
$${IDF_PATH}/components/bt/common/btc/include \
$${IDF_PATH}/components/bt/common/include \
$${IDF_PATH}/components/bt/common/osi \
$${IDF_PATH}/components/bt/common/osi/include/osi \
$${IDF_PATH}/components/bt/common/osi/include \
$${IDF_PATH}/components/bt/controller \
$${IDF_PATH}/components/bt/esp_ble_mesh/api/core \
$${IDF_PATH}/components/bt/esp_ble_mesh/api/core/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/api \
$${IDF_PATH}/components/bt/esp_ble_mesh/api/models \
$${IDF_PATH}/components/bt/esp_ble_mesh/api/models/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/btc \
$${IDF_PATH}/components/bt/esp_ble_mesh/btc/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_common/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_common \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_core \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_core/bluedroid_host \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_core/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_core/nimble_host \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_core/storage \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_models/client \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_models/client/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_models/common/include \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_models/server \
$${IDF_PATH}/components/bt/esp_ble_mesh/mesh_models/server/include \
$${IDF_PATH}/components/bt/host/bluedroid/api \
$${IDF_PATH}/components/bt/host/bluedroid/api/include/api \
$${IDF_PATH}/components/bt/host/bluedroid/api/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/ar \
$${IDF_PATH}/components/bt/host/bluedroid/bta/ar/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/av \
$${IDF_PATH}/components/bt/host/bluedroid/bta/av/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/dm \
$${IDF_PATH}/components/bt/host/bluedroid/bta/dm/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/gatt \
$${IDF_PATH}/components/bt/host/bluedroid/bta/gatt/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/hf_ag \
$${IDF_PATH}/components/bt/host/bluedroid/bta/hf_client \
$${IDF_PATH}/components/bt/host/bluedroid/bta/hf_client/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/hh \
$${IDF_PATH}/components/bt/host/bluedroid/bta/hh/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/include/bta \
$${IDF_PATH}/components/bt/host/bluedroid/bta/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/jv \
$${IDF_PATH}/components/bt/host/bluedroid/bta/jv/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/sdp \
$${IDF_PATH}/components/bt/host/bluedroid/bta/sdp/include \
$${IDF_PATH}/components/bt/host/bluedroid/bta/sys \
$${IDF_PATH}/components/bt/host/bluedroid/bta/sys/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/core \
$${IDF_PATH}/components/bt/host/bluedroid/btc/include/btc \
$${IDF_PATH}/components/bt/host/bluedroid/btc/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/esp/ble_button \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/esp/blufi \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/esp/blufi/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/esp/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/esp/wechat_AirSync \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/a2dp \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/a2dp/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/avrc \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/battery \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/battery/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/dis \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/dis/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/gap \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/gatt \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/hf_client \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/hid/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/smp \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/smp/include \
$${IDF_PATH}/components/bt/host/bluedroid/btc/profile/std/spp \
$${IDF_PATH}/components/bt/host/bluedroid/common/include/common \
$${IDF_PATH}/components/bt/host/bluedroid/common/include \
$${IDF_PATH}/components/bt/host/bluedroid/device \
$${IDF_PATH}/components/bt/host/bluedroid/device/include/device \
$${IDF_PATH}/components/bt/host/bluedroid/device/include \
$${IDF_PATH}/components/bt/host/bluedroid/external/sbc/decoder/include \
$${IDF_PATH}/components/bt/host/bluedroid/external/sbc/decoder/srce \
$${IDF_PATH}/components/bt/host/bluedroid/external/sbc/encoder/include \
$${IDF_PATH}/components/bt/host/bluedroid/external/sbc/encoder/srce \
$${IDF_PATH}/components/bt/host/bluedroid/external/sbc/plc/include \
$${IDF_PATH}/components/bt/host/bluedroid/external/sbc/plc \
$${IDF_PATH}/components/bt/host/bluedroid/hci \
$${IDF_PATH}/components/bt/host/bluedroid/hci/include/hci \
$${IDF_PATH}/components/bt/host/bluedroid/hci/include \
$${IDF_PATH}/components/bt/host/bluedroid/main \
$${IDF_PATH}/components/bt/host/bluedroid/stack/a2dp \
$${IDF_PATH}/components/bt/host/bluedroid/stack/a2dp/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/avct \
$${IDF_PATH}/components/bt/host/bluedroid/stack/avct/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/avdt \
$${IDF_PATH}/components/bt/host/bluedroid/stack/avdt/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/avrc \
$${IDF_PATH}/components/bt/host/bluedroid/stack/avrc/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/btm \
$${IDF_PATH}/components/bt/host/bluedroid/stack/btm/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/btu \
$${IDF_PATH}/components/bt/host/bluedroid/stack/gap \
$${IDF_PATH}/components/bt/host/bluedroid/stack/gap/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/gatt \
$${IDF_PATH}/components/bt/host/bluedroid/stack/gatt/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/hcic \
$${IDF_PATH}/components/bt/host/bluedroid/stack/include/stack \
$${IDF_PATH}/components/bt/host/bluedroid/stack/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/l2cap/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/l2cap \
$${IDF_PATH}/components/bt/host/bluedroid/stack/rfcomm/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/rfcomm \
$${IDF_PATH}/components/bt/host/bluedroid/stack/sdp/include \
$${IDF_PATH}/components/bt/host/bluedroid/stack/sdp \
$${IDF_PATH}/components/bt/host/bluedroid/stack/smp \
$${IDF_PATH}/components/bt/host/bluedroid/stack/smp/include \
$${IDF_PATH}/components/bt/host/nimble/esp-hci/include \
$${IDF_PATH}/components/bt/host/nimble/esp-hci/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blecent/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blecsc/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blehci/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blehr/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blemesh/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blemesh_light/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blemesh_models_example_1/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blemesh_models_example_2/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/blemesh_shell/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/bleprph/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/bletest/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/btshell/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/bttester/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/apps/ext_advertiser/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/ext/tinycrypt/include/tinycrypt \
$${IDF_PATH}/components/bt/host/nimble/nimble/ext/tinycrypt/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/ext/tinycrypt/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/controller/include/controller \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/controller/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/controller/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/controller/test/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/native/include/ble \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/native/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/native/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/nrf51/include/ble \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/nrf51/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/nrf51/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/nrf52/include/ble \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/nrf52/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/drivers/nrf52/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/include/host \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/mesh/include/mesh \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/mesh/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/mesh/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/ans/include/services/ans \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/ans/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/ans/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/bas/include/services/bas \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/bas/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/bas/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/bleuart/include/bleuart \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/bleuart/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/bleuart/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/dis/include/services/dis \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/dis/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/dis/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/gap/include/services/gap \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/gap/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/gap/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/gatt/include/services/gatt \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/gatt/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/gatt/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/ias/include/services/ias \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/ias/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/ias/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/lls/include/services/lls \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/lls/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/lls/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/tps/include/services/tps \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/tps/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/services/tps/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/store/config/include/store/config \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/store/config/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/store/config/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/store/ram/include/store/ram \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/store/ram/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/store/ram/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/test/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/util/include/host/util \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/util/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/host/util/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/include/nimble \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/emspi/include/transport/emspi \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/emspi/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/emspi/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/ram/include/transport/ram \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/ram/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/ram/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/socket/include/socket \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/socket/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/socket/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/uart/include/transport/uart \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/uart/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/nimble/transport/uart/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/examples/dummy \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/examples/linux \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/examples/linux/include/syscfg \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/examples/linux/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/examples/linux_blemesh \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/examples/linux_blemesh/include/syscfg \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/examples/linux_blemesh/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/hal \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/log \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/mem \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/modlog \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/nimble \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/os \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/stats \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/syscfg \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include/sysinit \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/nimble/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/dummy/include/nimble \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/dummy/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/dummy/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/freertos/include/nimble \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/freertos/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/freertos/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/linux/include/console \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/linux/include/nimble \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/linux/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/linux/src \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/linux/test \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/mynewt/include/nimble \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/mynewt/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/riot/include/nimble \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/riot/include/syscfg \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/riot/include \
$${IDF_PATH}/components/bt/host/nimble/nimble/porting/npl/riot/src \
$${IDF_PATH}/components/bt/host/nimble/port/include/console \
$${IDF_PATH}/components/bt/host/nimble/port/include \
$${IDF_PATH}/components/bt/host/nimble/port/src \
$${IDF_PATH}/components/bt/include \
$${IDF_PATH}/components/bt/test \
$${IDF_PATH}/components/cbor/tinycbor/examples \
$${IDF_PATH}/components/cbor/tinycbor/src \
$${IDF_PATH}/components/cbor/tinycbor/tests/c90 \
$${IDF_PATH}/components/cbor/tinycbor/tests/cpp \
$${IDF_PATH}/components/cbor/tinycbor/tests/encoder \
$${IDF_PATH}/components/cbor/tinycbor/tests/parser \
$${IDF_PATH}/components/cbor/tinycbor/tests/tojson \
$${IDF_PATH}/components/cbor/tinycbor/tools/cbordump \
$${IDF_PATH}/components/cbor/tinycbor/tools/json2cbor \
$${IDF_PATH}/components/coap/libcoap/examples \
$${IDF_PATH}/components/coap/libcoap/examples/contiki \
$${IDF_PATH}/components/coap/libcoap/examples/lwip \
$${IDF_PATH}/components/coap/libcoap/ext/tinydtls \
$${IDF_PATH}/components/coap/libcoap/ext/tinydtls/aes \
$${IDF_PATH}/components/coap/libcoap/ext/tinydtls/ecc \
$${IDF_PATH}/components/coap/libcoap/ext/tinydtls/platform-specific \
$${IDF_PATH}/components/coap/libcoap/ext/tinydtls/sha2 \
$${IDF_PATH}/components/coap/libcoap/ext/tinydtls/tests \
$${IDF_PATH}/components/coap/libcoap/include/coap2 \
$${IDF_PATH}/components/coap/libcoap/include \
$${IDF_PATH}/components/coap/libcoap/src \
$${IDF_PATH}/components/coap/libcoap/tests \
$${IDF_PATH}/components/coap/libcoap/tests/oss-fuzz \
$${IDF_PATH}/components/coap/port \
$${IDF_PATH}/components/coap/port/include/coap \
$${IDF_PATH}/components/coap/port/include \
$${IDF_PATH}/components/console/argtable3 \
$${IDF_PATH}/components/console \
$${IDF_PATH}/components/console/linenoise \
$${IDF_PATH}/components/cxx \
$${IDF_PATH}/components/cxx/test \
$${IDF_PATH}/components/driver \
$${IDF_PATH}/components/driver/include/driver \
$${IDF_PATH}/components/driver/include \
$${IDF_PATH}/components/driver/test \
$${IDF_PATH}/components/driver/test/include/test \
$${IDF_PATH}/components/driver/test/include \
$${IDF_PATH}/components/driver/test/param_test/include \
$${IDF_PATH}/components/driver/test/param_test \
$${IDF_PATH}/components/efuse/esp32 \
$${IDF_PATH}/components/efuse/esp32/include \
$${IDF_PATH}/components/efuse/include \
$${IDF_PATH}/components/efuse/src \
$${IDF_PATH}/components/efuse/test \
$${IDF_PATH}/components/efuse/test/include \
$${IDF_PATH}/components/esp-tls \
$${IDF_PATH}/components/esp-tls/private_include \
$${IDF_PATH}/components/esp32 \
$${IDF_PATH}/components/esp32/include/esp32 \
$${IDF_PATH}/components/esp32/include \
$${IDF_PATH}/components/esp32/include/rom \
$${IDF_PATH}/components/esp32/test \
$${IDF_PATH}/components/esp_adc_cal \
$${IDF_PATH}/components/esp_adc_cal/include \
$${IDF_PATH}/components/esp_common/include \
$${IDF_PATH}/components/esp_common/include/esp_private \
$${IDF_PATH}/components/esp_common/src \
$${IDF_PATH}/components/esp_eth/include \
$${IDF_PATH}/components/esp_eth/src \
$${IDF_PATH}/components/esp_eth/test \
$${IDF_PATH}/components/esp_event \
$${IDF_PATH}/components/esp_event/include \
$${IDF_PATH}/components/esp_event/private_include \
$${IDF_PATH}/components/esp_event/test \
$${IDF_PATH}/components/esp_gdbstub/esp32 \
$${IDF_PATH}/components/esp_gdbstub/include \
$${IDF_PATH}/components/esp_gdbstub/private_include \
$${IDF_PATH}/components/esp_gdbstub/src \
$${IDF_PATH}/components/esp_gdbstub/xtensa \
$${IDF_PATH}/components/esp_http_client \
$${IDF_PATH}/components/esp_http_client/include \
$${IDF_PATH}/components/esp_http_client/lib \
$${IDF_PATH}/components/esp_http_client/lib/include \
$${IDF_PATH}/components/esp_http_client/test \
$${IDF_PATH}/components/esp_http_server/include \
$${IDF_PATH}/components/esp_http_server/src \
$${IDF_PATH}/components/esp_http_server/src/port/esp32 \
$${IDF_PATH}/components/esp_http_server/src/util \
$${IDF_PATH}/components/esp_http_server/test \
$${IDF_PATH}/components/esp_https_ota/include \
$${IDF_PATH}/components/esp_https_ota/src \
$${IDF_PATH}/components/esp_https_server/include \
$${IDF_PATH}/components/esp_https_server/src \
$${IDF_PATH}/components/esp_local_ctrl/include \
$${IDF_PATH}/components/esp_local_ctrl/proto-c \
$${IDF_PATH}/components/esp_local_ctrl/src \
$${IDF_PATH}/components/esp_ringbuf \
$${IDF_PATH}/components/esp_ringbuf/include/freertos \
$${IDF_PATH}/components/esp_ringbuf/include \
$${IDF_PATH}/components/esp_ringbuf/test \
$${IDF_PATH}/components/esp_rom \
$${IDF_PATH}/components/esp_rom/include/esp32/rom \
$${IDF_PATH}/components/esp_rom/include \
$${IDF_PATH}/components/esp_websocket_client \
$${IDF_PATH}/components/esp_websocket_client/include \
$${IDF_PATH}/components/esp_wifi/esp32/include \
$${IDF_PATH}/components/esp_wifi/include \
$${IDF_PATH}/components/esp_wifi/include/esp_private \
$${IDF_PATH}/components/esp_wifi/src \
$${IDF_PATH}/components/esp_wifi/test \
$${IDF_PATH}/components/espcoredump/include \
$${IDF_PATH}/components/espcoredump/include_core_dump \
$${IDF_PATH}/components/espcoredump/src \
$${IDF_PATH}/components/espcoredump/test \
$${IDF_PATH}/components/esptool_py/esptool/flasher_stub \
$${IDF_PATH}/components/esptool_py/esptool/flasher_stub/include \
$${IDF_PATH}/components/expat/expat/expat/examples \
$${IDF_PATH}/components/expat/expat/expat/fuzz \
$${IDF_PATH}/components/expat/expat/expat/gennmtab \
$${IDF_PATH}/components/expat/expat/expat/lib \
$${IDF_PATH}/components/expat/expat/expat/tests/benchmark \
$${IDF_PATH}/components/expat/expat/expat/tests \
$${IDF_PATH}/components/expat/expat/expat/xmlwf \
$${IDF_PATH}/components/expat/port/include \
$${IDF_PATH}/components/expat/test \
$${IDF_PATH}/components/fatfs/diskio \
$${IDF_PATH}/components/fatfs/port/freertos \
$${IDF_PATH}/components/fatfs/port/linux \
$${IDF_PATH}/components/fatfs/src \
$${IDF_PATH}/components/fatfs/test \
$${IDF_PATH}/components/fatfs/test_fatfs_host \
$${IDF_PATH}/components/fatfs/test_fatfs_host/sdkconfig \
$${IDF_PATH}/components/fatfs/vfs \
$${IDF_PATH}/components/freemodbus/common \
$${IDF_PATH}/components/freemodbus/common/include \
$${IDF_PATH}/components/freemodbus/modbus/ascii \
$${IDF_PATH}/components/freemodbus/modbus/functions \
$${IDF_PATH}/components/freemodbus/modbus/include \
$${IDF_PATH}/components/freemodbus/modbus \
$${IDF_PATH}/components/freemodbus/modbus/rtu \
$${IDF_PATH}/components/freemodbus/modbus/tcp \
$${IDF_PATH}/components/freemodbus/port \
$${IDF_PATH}/components/freemodbus/serial_master/modbus_controller \
$${IDF_PATH}/components/freemodbus/serial_master/port \
$${IDF_PATH}/components/freemodbus/serial_slave/modbus_controller \
$${IDF_PATH}/components/freemodbus/serial_slave/port \
$${IDF_PATH}/components/freertos \
$${IDF_PATH}/components/freertos/include/freertos \
$${IDF_PATH}/components/freertos/include \
$${IDF_PATH}/components/freertos/test \
$${IDF_PATH}/components/heap \
$${IDF_PATH}/components/heap/include \
$${IDF_PATH}/components/heap/test \
$${IDF_PATH}/components/heap/test_multi_heap_host \
$${IDF_PATH}/components/idf_test/include \
$${IDF_PATH}/components/jsmn/include \
$${IDF_PATH}/components/jsmn/src \
$${IDF_PATH}/components/json/cJSON \
$${IDF_PATH}/components/json/cJSON/fuzzing \
$${IDF_PATH}/components/json/cJSON/tests \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_1/src \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_1/test/test_runners \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_1/test \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_2/src \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_2/test/test_runners \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_2/test \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_3/helper \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_3/src \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples/example_3/test \
$${IDF_PATH}/components/json/cJSON/tests/unity/examples \
$${IDF_PATH}/components/json/cJSON/tests/unity/extras/fixture/src \
$${IDF_PATH}/components/json/cJSON/tests/unity/extras/fixture/test/main \
$${IDF_PATH}/components/json/cJSON/tests/unity/extras/fixture/test \
$${IDF_PATH}/components/json/cJSON/tests/unity/src \
$${IDF_PATH}/components/json/cJSON/tests/unity/test/expectdata \
$${IDF_PATH}/components/json/cJSON/tests/unity/test/testdata \
$${IDF_PATH}/components/json/cJSON/tests/unity/test/tests \
$${IDF_PATH}/components/libsodium/libsodium/builds/msvc \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_auth \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha256 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512256 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_box \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_core/curve25519/ref10 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_core/hchacha20 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20/ref2 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_core/salsa/ref \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_generichash \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_hash \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256/cp \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512/cp \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_kdf/blake2b \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_kdf \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_kx \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_pwhash \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_scalarmult \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_secretbox \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_shorthash \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/ref \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_sign \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/ref \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/ref \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012/ref \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208/ref \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/xchacha20 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_stream/xsalsa20 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/crypto_verify/sodium \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/include \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/include/sodium \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/include/sodium/private \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/randombytes/nativeclient \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/randombytes \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/randombytes/salsa20 \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/randombytes/sysrandom \
$${IDF_PATH}/components/libsodium/libsodium/src/libsodium/sodium \
$${IDF_PATH}/components/libsodium/libsodium/test/default \
$${IDF_PATH}/components/libsodium/libsodium/test/quirks \
$${IDF_PATH}/components/libsodium/port/crypto_hash_mbedtls \
$${IDF_PATH}/components/libsodium/port \
$${IDF_PATH}/components/libsodium/port_include/sodium \
$${IDF_PATH}/components/libsodium/test \
$${IDF_PATH}/components/log \
$${IDF_PATH}/components/log/include \
$${IDF_PATH}/components/lwip/apps/dhcpserver \
$${IDF_PATH}/components/lwip/apps/ping \
$${IDF_PATH}/components/lwip/apps/sntp \
$${IDF_PATH}/components/lwip/include/apps/dhcpserver \
$${IDF_PATH}/components/lwip/include/apps \
$${IDF_PATH}/components/lwip/include/apps/ping \
$${IDF_PATH}/components/lwip/include/apps/sntp \
$${IDF_PATH}/components/lwip/include \
$${IDF_PATH}/components/lwip/lwip/doc \
$${IDF_PATH}/components/lwip/lwip/doc/doxygen \
$${IDF_PATH}/components/lwip/lwip/src/api \
$${IDF_PATH}/components/lwip/lwip/src/apps/altcp_tls \
$${IDF_PATH}/components/lwip/lwip/src/apps/http \
$${IDF_PATH}/components/lwip/lwip/src/apps/http/makefsdata \
$${IDF_PATH}/components/lwip/lwip/src/apps/lwiperf \
$${IDF_PATH}/components/lwip/lwip/src/apps/mdns \
$${IDF_PATH}/components/lwip/lwip/src/apps/mqtt \
$${IDF_PATH}/components/lwip/lwip/src/apps/netbiosns \
$${IDF_PATH}/components/lwip/lwip/src/apps/smtp \
$${IDF_PATH}/components/lwip/lwip/src/apps/snmp \
$${IDF_PATH}/components/lwip/lwip/src/apps/sntp \
$${IDF_PATH}/components/lwip/lwip/src/apps/tftp \
$${IDF_PATH}/components/lwip/lwip/src/core \
$${IDF_PATH}/components/lwip/lwip/src/core/ipv4 \
$${IDF_PATH}/components/lwip/lwip/src/core/ipv6 \
$${IDF_PATH}/components/lwip/lwip/src/include/compat/posix/arpa \
$${IDF_PATH}/components/lwip/lwip/src/include/compat/posix/net \
$${IDF_PATH}/components/lwip/lwip/src/include/compat/posix \
$${IDF_PATH}/components/lwip/lwip/src/include/compat/posix/sys \
$${IDF_PATH}/components/lwip/lwip/src/include/compat/stdc \
$${IDF_PATH}/components/lwip/lwip/src/include/lwip \
$${IDF_PATH}/components/lwip/lwip/src/include/lwip/apps \
$${IDF_PATH}/components/lwip/lwip/src/include/lwip/priv \
$${IDF_PATH}/components/lwip/lwip/src/include/lwip/prot \
$${IDF_PATH}/components/lwip/lwip/src/include/netif \
$${IDF_PATH}/components/lwip/lwip/src/include/netif/ppp \
$${IDF_PATH}/components/lwip/lwip/src/include/netif/ppp/polarssl \
$${IDF_PATH}/components/lwip/lwip/src/include \
$${IDF_PATH}/components/lwip/lwip/src/netif \
$${IDF_PATH}/components/lwip/lwip/src/netif/ppp \
$${IDF_PATH}/components/lwip/lwip/src/netif/ppp/polarssl \
$${IDF_PATH}/components/lwip/lwip/test/fuzz \
$${IDF_PATH}/components/lwip/lwip/test/sockets \
$${IDF_PATH}/components/lwip/lwip/test/unit/api \
$${IDF_PATH}/components/lwip/lwip/test/unit/arch \
$${IDF_PATH}/components/lwip/lwip/test/unit \
$${IDF_PATH}/components/lwip/lwip/test/unit/core \
$${IDF_PATH}/components/lwip/lwip/test/unit/dhcp \
$${IDF_PATH}/components/lwip/lwip/test/unit/etharp \
$${IDF_PATH}/components/lwip/lwip/test/unit/ip4 \
$${IDF_PATH}/components/lwip/lwip/test/unit/ip6 \
$${IDF_PATH}/components/lwip/lwip/test/unit/mdns \
$${IDF_PATH}/components/lwip/lwip/test/unit/mqtt \
$${IDF_PATH}/components/lwip/lwip/test/unit/tcp \
$${IDF_PATH}/components/lwip/lwip/test/unit/udp \
$${IDF_PATH}/components/lwip/port/esp32/debug \
$${IDF_PATH}/components/lwip/port/esp32/freertos \
$${IDF_PATH}/components/lwip/port/esp32/include/arch \
$${IDF_PATH}/components/lwip/port/esp32/include/arpa \
$${IDF_PATH}/components/lwip/port/esp32/include/debug \
$${IDF_PATH}/components/lwip/port/esp32/include \
$${IDF_PATH}/components/lwip/port/esp32/include/netif \
$${IDF_PATH}/components/lwip/port/esp32/include/netinet \
$${IDF_PATH}/components/lwip/port/esp32/include/sys \
$${IDF_PATH}/components/lwip/port/esp32/netif \
$${IDF_PATH}/components/lwip/port/esp32 \
$${IDF_PATH}/components/lwip/test_afl_host \
$${IDF_PATH}/components/mbedtls/mbedtls/configs \
$${IDF_PATH}/components/mbedtls/mbedtls/doxygen/input \
$${IDF_PATH}/components/mbedtls/mbedtls/include \
$${IDF_PATH}/components/mbedtls/mbedtls/include/mbedtls \
$${IDF_PATH}/components/mbedtls/mbedtls/library \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/aes \
$${IDF_PATH}/components/mbedtls/mbedtls/programs \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/hash \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/pkey \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/random \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/ssl \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/test \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/util \
$${IDF_PATH}/components/mbedtls/mbedtls/programs/x509 \
$${IDF_PATH}/components/mbedtls/mbedtls/tests/configs \
$${IDF_PATH}/components/mbedtls/port/esp32 \
$${IDF_PATH}/components/mbedtls/port \
$${IDF_PATH}/components/mbedtls/port/include \
$${IDF_PATH}/components/mbedtls/port/include/esp32 \
$${IDF_PATH}/components/mbedtls/port/include/mbedtls \
$${IDF_PATH}/components/mbedtls/test \
$${IDF_PATH}/components/mdns \
$${IDF_PATH}/components/mdns/include \
$${IDF_PATH}/components/mdns/private_include \
$${IDF_PATH}/components/mdns/test \
$${IDF_PATH}/components/mdns/test_afl_fuzz_host \
$${IDF_PATH}/components/micro-ecc/micro-ecc \
$${IDF_PATH}/components/micro-ecc/micro-ecc/test \
$${IDF_PATH}/components/mqtt/esp-mqtt/include \
$${IDF_PATH}/components/mqtt/esp-mqtt/lib/include \
$${IDF_PATH}/components/mqtt/esp-mqtt/lib \
$${IDF_PATH}/components/mqtt/esp-mqtt \
$${IDF_PATH}/components/newlib \
$${IDF_PATH}/components/newlib/include \
$${IDF_PATH}/components/newlib/include/machine \
$${IDF_PATH}/components/newlib/include/sys \
$${IDF_PATH}/components/newlib/include/xtensa/config \
$${IDF_PATH}/components/newlib/platform_include \
$${IDF_PATH}/components/newlib/platform_include/net \
$${IDF_PATH}/components/newlib/platform_include/sys \
$${IDF_PATH}/components/newlib/test \
$${IDF_PATH}/components/nghttp/nghttp2/examples \
$${IDF_PATH}/components/nghttp/nghttp2/lib \
$${IDF_PATH}/components/nghttp/nghttp2/lib/includes/nghttp2 \
$${IDF_PATH}/components/nghttp/nghttp2/src \
$${IDF_PATH}/components/nghttp/nghttp2/src/includes/nghttp2 \
$${IDF_PATH}/components/nghttp/nghttp2/tests \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/http-parser \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/http-parser/contrib \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/examples/mrbgems/c_and_ruby_extension_example/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/examples/mrbgems/c_extension_example/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/examples/mrbgems/c_extension_example/test \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/include \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/include/mruby \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-array-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-bin-debugger/tools/mrdb \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-bin-mirb/tools/mirb \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-bin-mruby/tools/mruby \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-compiler/core \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-error/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-error/test \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-eval/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-exit/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-fiber/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-hash-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-kernel-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-math/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-numeric-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-object-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-objectspace/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-print/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-proc-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-proc-ext/test \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-random/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-range-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-sprintf/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-string-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-struct/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-symbol-ext/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-test \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrbgems/mruby-time/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/mrblib \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/mruby/src \
$${IDF_PATH}/components/nghttp/nghttp2/third-party/neverbleed \
$${IDF_PATH}/components/nghttp/port \
$${IDF_PATH}/components/nghttp/port/include \
$${IDF_PATH}/components/nghttp/port/include/nghttp2 \
$${IDF_PATH}/components/nvs_flash/include \
$${IDF_PATH}/components/nvs_flash/src \
$${IDF_PATH}/components/nvs_flash/test \
$${IDF_PATH}/components/nvs_flash/test_nvs_host \
$${IDF_PATH}/components/openssl/include/internal \
$${IDF_PATH}/components/openssl/include/openssl \
$${IDF_PATH}/components/openssl/include/platform \
$${IDF_PATH}/components/openssl/include \
$${IDF_PATH}/components/openssl/library \
$${IDF_PATH}/components/openssl/platform \
$${IDF_PATH}/components/partition_table/test \
$${IDF_PATH}/components/protobuf-c/protobuf-c/protobuf-c \
$${IDF_PATH}/components/protobuf-c/protobuf-c/protoc-c \
$${IDF_PATH}/components/protobuf-c/protobuf-c/t/generated-code \
$${IDF_PATH}/components/protobuf-c/protobuf-c/t/generated-code2 \
$${IDF_PATH}/components/protobuf-c/protobuf-c/t/issue220 \
$${IDF_PATH}/components/protobuf-c/protobuf-c/t/issue251 \
$${IDF_PATH}/components/protobuf-c/protobuf-c/t/version \
$${IDF_PATH}/components/protocomm/include/common \
$${IDF_PATH}/components/protocomm/include/security \
$${IDF_PATH}/components/protocomm/include/transports \
$${IDF_PATH}/components/protocomm/include \
$${IDF_PATH}/components/protocomm/proto-c \
$${IDF_PATH}/components/protocomm/src/common \
$${IDF_PATH}/components/protocomm/src/security \
$${IDF_PATH}/components/protocomm/src/simple_ble \
$${IDF_PATH}/components/protocomm/src/transports \
$${IDF_PATH}/components/protocomm/test \
$${IDF_PATH}/components/pthread \
$${IDF_PATH}/components/pthread/include \
$${IDF_PATH}/components/pthread/test \
$${IDF_PATH}/components/sdmmc \
$${IDF_PATH}/components/sdmmc/include \
$${IDF_PATH}/components/sdmmc/test \
$${IDF_PATH}/components/soc/esp32 \
$${IDF_PATH}/components/soc/esp32/include/hal \
$${IDF_PATH}/components/soc/esp32/include/soc \
$${IDF_PATH}/components/soc/esp32/include \
$${IDF_PATH}/components/soc/esp32/test \
$${IDF_PATH}/components/soc/include/hal \
$${IDF_PATH}/components/soc/include/soc \
$${IDF_PATH}/components/soc/include \
$${IDF_PATH}/components/soc/src/hal \
$${IDF_PATH}/components/soc/src \
$${IDF_PATH}/components/spi_flash \
$${IDF_PATH}/components/spi_flash/include \
$${IDF_PATH}/components/spi_flash/private_include \
$${IDF_PATH}/components/spi_flash/sim \
$${IDF_PATH}/components/spi_flash/sim/sdkconfig \
$${IDF_PATH}/components/spi_flash/sim/stubs/app_update \
$${IDF_PATH}/components/spi_flash/sim/stubs/bootloader_support/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/bootloader_support/src \
$${IDF_PATH}/components/spi_flash/sim/stubs/driver/include/driver \
$${IDF_PATH}/components/spi_flash/sim/stubs/driver/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/esp32 \
$${IDF_PATH}/components/spi_flash/sim/stubs/esp32/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/esp_timer/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/esp_timer/src \
$${IDF_PATH}/components/spi_flash/sim/stubs/freertos/include/freertos \
$${IDF_PATH}/components/spi_flash/sim/stubs/freertos/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/log/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/log \
$${IDF_PATH}/components/spi_flash/sim/stubs/newlib/include/sys \
$${IDF_PATH}/components/spi_flash/sim/stubs/newlib/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/newlib \
$${IDF_PATH}/components/spi_flash/sim/stubs/sdkconfig \
$${IDF_PATH}/components/spi_flash/sim/stubs/sdmmc/include \
$${IDF_PATH}/components/spi_flash/sim/stubs/vfs/include \
$${IDF_PATH}/components/spi_flash/test \
$${IDF_PATH}/components/spiffs \
$${IDF_PATH}/components/spiffs/include \
$${IDF_PATH}/components/spiffs/spiffs/src/default \
$${IDF_PATH}/components/spiffs/spiffs/src \
$${IDF_PATH}/components/spiffs/spiffs/src/test \
$${IDF_PATH}/components/spiffs/test \
$${IDF_PATH}/components/spiffs/test_spiffs_host \
$${IDF_PATH}/components/spiffs/test_spiffs_host/sdkconfig \
$${IDF_PATH}/components/tcp_transport \
$${IDF_PATH}/components/tcp_transport/include \
$${IDF_PATH}/components/tcp_transport/private_include \
$${IDF_PATH}/components/tcp_transport/test \
$${IDF_PATH}/components/tcpip_adapter \
$${IDF_PATH}/components/tcpip_adapter/include \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/device/cdc_msc_hid/src \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/device/cdc_msc_hid_freertos/ses/lpc175x_6x \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/device/cdc_msc_hid_freertos/src \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/device/hid_generic_inout/src \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/device/midi_test/src \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/device/msc_dual_lun/src \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/host/cdc_msc_hid/src \
$${IDF_PATH}/components/tinyusb/tinyusb/examples/obsolete/host/src \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/ea4088qs \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/ea4357 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/feather_m4_express \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/feather_nrf52840_express \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/lpcxpresso11u68 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/lpcxpresso1347 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/lpcxpresso1769 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/mcb1800 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/metro_m0_express \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/metro_m4_express \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/pca10056 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/stm32f303disc \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/bsp/stm32f407g_disc1 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/cmsis/Include \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/mcu/nordic \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/mcu/nordic/nrf5x/s140_nrf52_6.1.1_API/include/nrf52 \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/mcu/st/cmsis \
$${IDF_PATH}/components/tinyusb/tinyusb/hw/mcu/st/system-init \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/fatfs \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/FreeRTOS/Source \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/FreeRTOS/Source/include \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/FreeRTOS/Source/portable/Common \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/FreeRTOS/Source/portable/GCC/ARM_CM0 \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/FreeRTOS/Source/portable/GCC/ARM_CM3 \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/FreeRTOS/Source/portable/GCC/ARM_CM4F \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/FreeRTOS/Source/portable/MemMang \
$${IDF_PATH}/components/tinyusb/tinyusb/lib/segger_rtt \
$${IDF_PATH}/components/tinyusb/tinyusb/src/class/audio \
$${IDF_PATH}/components/tinyusb/tinyusb/src/class/cdc \
$${IDF_PATH}/components/tinyusb/tinyusb/src/class/custom \
$${IDF_PATH}/components/tinyusb/tinyusb/src/class/hid \
$${IDF_PATH}/components/tinyusb/tinyusb/src/class/midi \
$${IDF_PATH}/components/tinyusb/tinyusb/src/class/msc \
$${IDF_PATH}/components/tinyusb/tinyusb/src/common \
$${IDF_PATH}/components/tinyusb/tinyusb/src/device \
$${IDF_PATH}/components/tinyusb/tinyusb/src/host/ehci \
$${IDF_PATH}/components/tinyusb/tinyusb/src/host \
$${IDF_PATH}/components/tinyusb/tinyusb/src/host/ohci \
$${IDF_PATH}/components/tinyusb/tinyusb/src/osal \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/microchip/samd21 \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/microchip/samd51 \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/nordic/nrf5x \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/nxp/lpc11_13_15 \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/nxp/lpc17_40 \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/nxp/lpc18_43 \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/st/stm32f3 \
$${IDF_PATH}/components/tinyusb/tinyusb/src/portable/st/stm32f4 \
$${IDF_PATH}/components/tinyusb/tinyusb/src \
$${IDF_PATH}/components/tinyusb/tinyusb/test/test/support \
$${IDF_PATH}/components/tinyusb/tinyusb/test/test \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/src/subfolder \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/plugins/fake_function_framework/examples/fff_example/test \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/plugins/fake_function_framework/src \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/vendor/c_exception/lib \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/vendor/cmock/src \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/vendor/unity/src \
$${IDF_PATH}/components/ulp \
$${IDF_PATH}/components/ulp/include/esp32 \
$${IDF_PATH}/components/ulp/include \
$${IDF_PATH}/components/ulp/test \
$${IDF_PATH}/components/unity \
$${IDF_PATH}/components/unity/include/priv \
$${IDF_PATH}/components/unity/include \
$${IDF_PATH}/components/unity/unity/examples/example_1/src \
$${IDF_PATH}/components/unity/unity/examples/example_1/test/test_runners \
$${IDF_PATH}/components/unity/unity/examples/example_1/test \
$${IDF_PATH}/components/unity/unity/examples/example_2/src \
$${IDF_PATH}/components/unity/unity/examples/example_2/test/test_runners \
$${IDF_PATH}/components/unity/unity/examples/example_2/test \
$${IDF_PATH}/components/unity/unity/examples/example_3/helper \
$${IDF_PATH}/components/unity/unity/examples/example_3/src \
$${IDF_PATH}/components/unity/unity/examples/example_3/test \
$${IDF_PATH}/components/unity/unity/examples \
$${IDF_PATH}/components/unity/unity/extras/fixture/src \
$${IDF_PATH}/components/unity/unity/extras/fixture/test/main \
$${IDF_PATH}/components/unity/unity/extras/fixture/test \
$${IDF_PATH}/components/unity/unity/src \
$${IDF_PATH}/components/unity/unity/test/expectdata \
$${IDF_PATH}/components/unity/unity/test/testdata \
$${IDF_PATH}/components/unity/unity/test/tests \
$${IDF_PATH}/components/vfs \
$${IDF_PATH}/components/vfs/include \
$${IDF_PATH}/components/vfs/include/sys \
$${IDF_PATH}/components/vfs/test \
$${IDF_PATH}/components/wear_levelling \
$${IDF_PATH}/components/wear_levelling/include \
$${IDF_PATH}/components/wear_levelling/private_include \
$${IDF_PATH}/components/wear_levelling/test \
$${IDF_PATH}/components/wear_levelling/test_wl_host \
$${IDF_PATH}/components/wear_levelling/test_wl_host/sdkconfig \
$${IDF_PATH}/components/wifi_provisioning/include/wifi_provisioning \
$${IDF_PATH}/components/wifi_provisioning/include \
$${IDF_PATH}/components/wifi_provisioning/proto-c \
$${IDF_PATH}/components/wifi_provisioning/src \
$${IDF_PATH}/components/wpa_supplicant/include/esp_supplicant \
$${IDF_PATH}/components/wpa_supplicant/include/utils \
$${IDF_PATH}/components/wpa_supplicant/include \
$${IDF_PATH}/components/wpa_supplicant/port/include \
$${IDF_PATH}/components/wpa_supplicant/port \
$${IDF_PATH}/components/wpa_supplicant/src/ap \
$${IDF_PATH}/components/wpa_supplicant/src/common \
$${IDF_PATH}/components/wpa_supplicant/src/crypto \
$${IDF_PATH}/components/wpa_supplicant/src/eap_peer \
$${IDF_PATH}/components/wpa_supplicant/src/esp_supplicant \
$${IDF_PATH}/components/wpa_supplicant/src/rsn_supp \
$${IDF_PATH}/components/wpa_supplicant/src/tls \
$${IDF_PATH}/components/wpa_supplicant/src/utils \
$${IDF_PATH}/components/wpa_supplicant/src/wps \
$${IDF_PATH}/components/wpa_supplicant/test \
$${IDF_PATH}/components/xtensa \
$${IDF_PATH}/components/xtensa/esp32/include/xtensa/config \
$${IDF_PATH}/components/xtensa/esp32/include \
$${IDF_PATH}/components/xtensa/include \
$${IDF_PATH}/components/xtensa/include/esp_private \
$${IDF_PATH}/components/xtensa/include/xtensa
SOURCES += \
$${IDF_PATH}/components/unity/unity/extras/fixture/test/main/AllTests.c \
$${IDF_PATH}/components/json/cJSON/tests/unity/extras/fixture/test/main/AllTests.c \
$${IDF_PATH}/components/tinyusb/tinyusb/test/vendor/ceedling/vendor/c_exception/lib/CException.c \