-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcompile_commands_docker.json
More file actions
3552 lines (3552 loc) · 556 KB
/
compile_commands_docker.json
File metadata and controls
3552 lines (3552 loc) · 556 KB
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
[
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/main.cpp.o -c /workspaces/deep_learning_security_system/src/main.cpp",
"file": "/workspaces/deep_learning_security_system/src/main.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/Camera/Camera.cpp.o -c /workspaces/deep_learning_security_system/src/module/Camera/Camera.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/Camera/Camera.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/Font/Font.cpp.o -c /workspaces/deep_learning_security_system/src/module/Font/Font.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/Font/Font.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/ImageProcess/ImageProcess.cpp.o -c /workspaces/deep_learning_security_system/src/module/ImageProcess/ImageProcess.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/ImageProcess/ImageProcess.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/Model/Model.cpp.o -c /workspaces/deep_learning_security_system/src/module/Model/Model.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/Model/Model.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/PageManager/PageManager.cpp.o -c /workspaces/deep_learning_security_system/src/module/PageManager/PageManager.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/PageManager/PageManager.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/PostProcess/PostProcess.cpp.o -c /workspaces/deep_learning_security_system/src/module/PostProcess/PostProcess.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/PostProcess/PostProcess.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/RknnPool/RknnPool.cpp.o -c /workspaces/deep_learning_security_system/src/module/RknnPool/RknnPool.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/RknnPool/RknnPool.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/Sensor/Sensor.cpp.o -c /workspaces/deep_learning_security_system/src/module/Sensor/Sensor.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/Sensor/Sensor.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/UI/AccessControlPage.cpp.o -c /workspaces/deep_learning_security_system/src/module/UI/AccessControlPage.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/UI/AccessControlPage.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/UI/MainPage.cpp.o -c /workspaces/deep_learning_security_system/src/module/UI/MainPage.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/UI/MainPage.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu++17 -o CMakeFiles/lvglsim.dir/src/module/UI/SecurityCameraPage.cpp.o -c /workspaces/deep_learning_security_system/src/module/UI/SecurityCameraPage.cpp",
"file": "/workspaces/deep_learning_security_system/src/module/UI/SecurityCameraPage.cpp"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu99 -o CMakeFiles/lvglsim.dir/src/assets/images/bg.c.o -c /workspaces/deep_learning_security_system/src/assets/images/bg.c",
"file": "/workspaces/deep_learning_security_system/src/assets/images/bg.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu99 -o CMakeFiles/lvglsim.dir/src/assets/images/face_icon.c.o -c /workspaces/deep_learning_security_system/src/assets/images/face_icon.c",
"file": "/workspaces/deep_learning_security_system/src/assets/images/face_icon.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -isystem /usr/include/opencv4 -std=gnu99 -o CMakeFiles/lvglsim.dir/src/assets/images/security_camera_icon.c.o -c /workspaces/deep_learning_security_system/src/assets/images/security_camera_icon.c",
"file": "/workspaces/deep_learning_security_system/src/assets/images/security_camera_icon.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_group.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_group.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_group.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_class.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_class.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_class.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_draw.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_draw.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_draw.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_event.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_event.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_event.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_id_builtin.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_id_builtin.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_id_builtin.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_pos.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_pos.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_pos.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_property.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_property.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_property.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_scroll.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_scroll.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_scroll.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_style.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_style.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_style.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_style_gen.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_style_gen.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_style_gen.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_obj_tree.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_tree.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_obj_tree.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/core/lv_refr.c.o -c /workspaces/deep_learning_security_system/lvgl/src/core/lv_refr.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/core/lv_refr.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/display/lv_display.c.o -c /workspaces/deep_learning_security_system/lvgl/src/display/lv_display.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/display/lv_display.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/dma2d/lv_draw_dma2d.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/dma2d/lv_draw_dma2d.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d_fill.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d_img.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/dma2d/lv_draw_dma2d_img.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/dma2d/lv_draw_dma2d_img.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_arc.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_arc.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_arc.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_buf.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_buf.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_buf.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_image.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_image.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_image.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_label.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_label.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_label.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_line.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_line.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_line.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_mask.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_mask.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_mask.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_rect.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_rect.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_rect.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_triangle.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_triangle.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_triangle.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_draw_vector.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_vector.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_draw_vector.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/lv_image_decoder.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/lv_image_decoder.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/lv_image_decoder.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_buf_pxp.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_fill.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_img.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_layer.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_cfg.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_osa.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_pxp_osa.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_pxp_osa.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_utils.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_pxp_utils.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/pxp/lv_pxp_utils.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_buf_vglite.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_buf_vglite.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_buf_vglite.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_arc.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_arc.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_arc.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_border.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_border.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_border.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_fill.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_fill.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_fill.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_img.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_img.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_img.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_label.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_label.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_label.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_layer.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_layer.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_layer.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_line.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_line.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_line.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_triangle.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_triangle.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_draw_vglite_triangle.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_buf.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_buf.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_buf.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_matrix.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_matrix.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_matrix.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_path.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_path.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_path.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_utils.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_utils.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/nxp/vglite/lv_vglite_utils.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_border.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_image.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_label.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_line.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sdl/lv_draw_sdl.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sdl/lv_draw_sdl.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sdl/lv_draw_sdl.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -o CMakeFiles/lvgl.dir/src/draw/sw/blend/helium/lv_blend_helium.S.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/helium/lv_blend_helium.S",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/helium/lv_blend_helium.S"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -o CMakeFiles/lvgl.dir/src/draw/sw/blend/neon/lv_blend_neon.S.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/neon/lv_blend_neon.S",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/blend/neon/lv_blend_neon.S"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_arc.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_arc.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_arc.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_border.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_border.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_border.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_box_shadow.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_box_shadow.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_box_shadow.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_fill.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_fill.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_fill.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_gradient.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_gradient.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_gradient.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_img.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_img.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_img.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_letter.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_letter.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_letter.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_line.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_line.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_line.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_mask.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_mask.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_mask.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_mask_rect.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_mask_rect.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_mask_rect.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_transform.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_transform.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_transform.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_triangle.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_triangle.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_triangle.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_vector.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_vector.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/sw/lv_draw_sw_vector.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_buf_vg_lite.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_arc.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_border.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_fill.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_img.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_label.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_layer.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_line.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_triangle.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_vector.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_decoder.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_grad.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_grad.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_grad.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_math.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_math.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_math.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_path.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_path.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_path.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_pending.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_pending.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_pending.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_stroke.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_utils.c.o -c /workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_utils.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/draw/vg_lite/lv_vg_lite_utils.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/drm/lv_linux_drm.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/drm/lv_linux_drm.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/drm/lv_linux_drm.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/fb/lv_linux_fbdev.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/fb/lv_linux_fbdev.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/fb/lv_linux_fbdev.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/ili9341/lv_ili9341.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/ili9341/lv_ili9341.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/ili9341/lv_ili9341.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/lcd/lv_lcd_generic_mipi.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/st7735/lv_st7735.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/st7735/lv_st7735.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/st7735/lv_st7735.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/st7789/lv_st7789.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/st7789/lv_st7789.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/st7789/lv_st7789.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/display/st7796/lv_st7796.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/display/st7796/lv_st7796.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/display/st7796/lv_st7796.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/evdev/lv_evdev.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/evdev/lv_evdev.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/evdev/lv_evdev.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/glfw/lv_glfw_window.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_glfw_window.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_glfw_window.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/glfw/lv_opengles_debug.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_opengles_debug.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_opengles_debug.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/glfw/lv_opengles_driver.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_opengles_driver.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_opengles_driver.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/glfw/lv_opengles_texture.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_opengles_texture.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/glfw/lv_opengles_texture.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/libinput/lv_libinput.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/libinput/lv_libinput.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/libinput/lv_libinput.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/libinput/lv_xkb.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/libinput/lv_xkb.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/libinput/lv_xkb.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_cache.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_cache.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_cache.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_entry.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_entry.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_entry.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_fbdev.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_image_cache.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_lcd.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_lcd.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_lcd.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_libuv.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_libuv.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_libuv.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_profiler.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_profiler.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_profiler.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_touchscreen.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/qnx/lv_qnx.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/qnx/lv_qnx.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/qnx/lv_qnx.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_keyboard.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_keyboard.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_keyboard.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_mouse.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_mouse.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_mouse.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_mousewheel.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_mousewheel.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_mousewheel.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_window.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_window.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/sdl/lv_sdl_window.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wayland.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/wayland/lv_wayland.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/wayland/lv_wayland.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wayland_smm.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/wayland/lv_wayland_smm.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/wayland/lv_wayland_smm.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_context.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/windows/lv_windows_context.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/windows/lv_windows_context.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_display.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/windows/lv_windows_display.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/windows/lv_windows_display.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_input.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/windows/lv_windows_input.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/windows/lv_windows_input.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/x11/lv_x11_display.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/x11/lv_x11_display.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/x11/lv_x11_display.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/drivers/x11/lv_x11_input.c.o -c /workspaces/deep_learning_security_system/lvgl/src/drivers/x11/lv_x11_input.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/drivers/x11/lv_x11_input.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_binfont_loader.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_binfont_loader.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_binfont_loader.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_dejavu_16_persian_hebrew.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_fmt_txt.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_fmt_txt.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_fmt_txt.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_10.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_10.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_10.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_12.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_12.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_12.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_14.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_14.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_14.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_16.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_16.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_16.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_18.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_18.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_18.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_20.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_20.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_20.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_22.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_22.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_22.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_24.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_24.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_24.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_26.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_26.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_26.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_28.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_28.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_28.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_28_compressed.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_28_compressed.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_28_compressed.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_30.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_30.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_30.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_32.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_32.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_32.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_34.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_34.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_34.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_36.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_36.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_36.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_38.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_38.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_38.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_40.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_40.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_40.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_42.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_42.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_42.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_44.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_44.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_44.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_46.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_46.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_46.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_48.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_48.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_48.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_8.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_8.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_montserrat_8.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_simsun_14_cjk.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_simsun_14_cjk.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_simsun_14_cjk.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_simsun_16_cjk.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_simsun_16_cjk.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_simsun_16_cjk.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_unscii_16.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_unscii_16.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_unscii_16.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/font/lv_font_unscii_8.c.o -c /workspaces/deep_learning_security_system/lvgl/src/font/lv_font_unscii_8.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/font/lv_font_unscii_8.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/indev/lv_indev.c.o -c /workspaces/deep_learning_security_system/lvgl/src/indev/lv_indev.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/indev/lv_indev.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/indev/lv_indev_scroll.c.o -c /workspaces/deep_learning_security_system/lvgl/src/indev/lv_indev_scroll.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/indev/lv_indev_scroll.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/layouts/flex/lv_flex.c.o -c /workspaces/deep_learning_security_system/lvgl/src/layouts/flex/lv_flex.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/layouts/flex/lv_flex.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/layouts/grid/lv_grid.c.o -c /workspaces/deep_learning_security_system/lvgl/src/layouts/grid/lv_grid.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/layouts/grid/lv_grid.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/layouts/lv_layout.c.o -c /workspaces/deep_learning_security_system/lvgl/src/layouts/lv_layout.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/layouts/lv_layout.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/barcode/code128.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/barcode/code128.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/barcode/code128.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/barcode/lv_barcode.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/barcode/lv_barcode.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/barcode/lv_barcode.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/bin_decoder/lv_bin_decoder.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/bin_decoder/lv_bin_decoder.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/bin_decoder/lv_bin_decoder.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/bmp/lv_bmp.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/bmp/lv_bmp.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/bmp/lv_bmp.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/ffmpeg/lv_ffmpeg.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/ffmpeg/lv_ffmpeg.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/ffmpeg/lv_ffmpeg.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_glyph.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype_glyph.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype_glyph.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_image.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype_image.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype_image.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_outline.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype_outline.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_freetype_outline.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_ftsystem.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_ftsystem.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/freetype/lv_ftsystem.c"
},
{
"directory": "/workspaces/deep_learning_security_system/build/lvgl",
"command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE -I/workspaces/deep_learning_security_system -I/usr/include/libdrm -I/workspaces/deep_learning_security_system/src/include -I/workspaces/deep_learning_security_system/src/library -I/usr/include/freetype2 -I/usr/include/libpng16 -isystem /workspaces/deep_learning_security_system/lvgl -isystem /workspaces/deep_learning_security_system/build/lvgl -std=gnu99 -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_cbfs.c.o -c /workspaces/deep_learning_security_system/lvgl/src/libs/fsdrv/lv_fs_cbfs.c",
"file": "/workspaces/deep_learning_security_system/lvgl/src/libs/fsdrv/lv_fs_cbfs.c"