-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
1646 lines (1601 loc) · 112 KB
/
Makefile
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
#############################################################################
# Makefile for building: 05_OpticalCharacterRecognition.app/Contents/MacOS/05_OpticalCharacterRecognition
# Generated by qmake (3.1) (Qt 5.15.10)
# Project: 05_OpticalCharacterRecognition.pro
# Template: app
# Command: /opt/homebrew/opt/qt@5/bin/qmake -o Makefile 05_OpticalCharacterRecognition.pro
#############################################################################
MAKEFILE = Makefile
EQ = =
####### Compiler, tools and options
CC = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
CXX = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++
DEFINES = -DTESSDATA_PREFIX=\"/opt/homebrew/share/tessdata/\" -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB
CFLAGS = -pipe -O2 $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -mmacosx-version-min=10.13 -Wall -Wextra -fPIC $(DEFINES)
CXXFLAGS = -pipe -stdlib=libc++ -O2 -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -mmacosx-version-min=10.13 -Wall -Wextra -fPIC $(DEFINES)
INCPATH = -I. -I. -I/opt/homebrew/include/opencv4 -I/opt/homebrew/include/tesseract_nested -I/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers -I/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers -I/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers -I. -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/AGL.framework/Headers -I/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/macx-clang -F/opt/homebrew/Cellar/qt@5/5.15.10/lib
QMAKE = /opt/homebrew/opt/qt@5/bin/qmake
DEL_FILE = rm -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
COPY = cp -f
COPY_FILE = cp -f
COPY_DIR = cp -f -R
INSTALL_FILE = install -m 644 -p
INSTALL_PROGRAM = install -m 755 -p
INSTALL_DIR = cp -f -R
QINSTALL = /opt/homebrew/opt/qt@5/bin/qmake -install qinstall
QINSTALL_PROGRAM = /opt/homebrew/opt/qt@5/bin/qmake -install qinstall -exe
DEL_FILE = rm -f
SYMLINK = ln -f -s
DEL_DIR = rmdir
MOVE = mv -f
TAR = tar -cf
COMPRESS = gzip -9f
DISTNAME = 05_OpticalCharacterRecognition1.0.0
DISTDIR = /Users/tonyfu/Desktop/OnlineCourses/OpenCV-Qt-App/05_OpticalCharacterRecognition/.tmp/05_OpticalCharacterRecognition1.0.0
LINK = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++
LFLAGS = -stdlib=libc++ -headerpad_max_install_names $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -mmacosx-version-min=10.13 -Wl,-rpath,@executable_path/../Frameworks
LIBS = $(SUBLIBS) -F/opt/homebrew/Cellar/qt@5/5.15.10/lib -L/opt/homebrew/opt/opencv/lib -lopencv_core -lopencv_imgproc -lopencv_dnn -L/opt/homebrew/lib -ltesseract -framework QtWidgets -framework QtGui -framework AppKit -framework Metal -framework QtCore -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL
AR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar cq
RANLIB = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib -s
SED = sed
STRIP = strip
####### Output directory
OBJECTS_DIR = ./
####### Files
SOURCES = main.cpp \
mainwindow.cpp \
screencapturer.cpp moc_mainwindow.cpp \
moc_screencapturer.cpp
OBJECTS = main.o \
mainwindow.o \
screencapturer.o \
moc_mainwindow.o \
moc_screencapturer.o
DIST = /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/spec_pre.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/qdevice.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/device_config.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/unix.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/mac.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/macx.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/sanitize.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/gcc-base.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/gcc-base-mac.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/clang.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/clang-mac.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/qconfig.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3danimation.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3danimation_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dcore.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dcore_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dextras.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dextras_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dinput.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dinput_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dlogic.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dlogic_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquick.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquick_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickanimation.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickextras.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickextras_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickinput.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickinput_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickrender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickrender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickscene2d.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3drender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3drender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_accessibility_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bluetooth.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bluetooth_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bodymovin_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bootstrap_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_charts.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_charts_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_clipboard_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_concurrent.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_concurrent_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_core.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_core_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_datavisualization.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_datavisualization_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_dbus.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_dbus_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designer.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designer_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designercomponents_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_edid_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_fb_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gamepad.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gamepad_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_graphics_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gui.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gui_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_help.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_help_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_location.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_location_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_macextras.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_macextras_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimedia.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimedia_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimediawidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_network.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_network_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_networkauth.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_networkauth_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_nfc.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_nfc_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_opengl.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_opengl_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_openglextensions.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_openglextensions_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_packetprotocol_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdf.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdf_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdfwidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdfwidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioning.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioning_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioningquick.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioningquick_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_printsupport.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_printsupport_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_purchasing.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_purchasing_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qml.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qml_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmldebug_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmldevtools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlmodels.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlmodels_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmltest.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmltest_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlworkerscript.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlworkerscript_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3d.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3d_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dassetimport.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dassetimport_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3drender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3drender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3druntimerender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3druntimerender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dutils.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dutils_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickcontrols2.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickparticles_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickshapes_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quicktemplates2.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickwidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickwidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_remoteobjects.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_remoteobjects_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_repparser.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_repparser_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_script.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_script_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scripttools.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scripttools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scxml.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scxml_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sensors.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sensors_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialbus.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialbus_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialport.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialport_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_service_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sql.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sql_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_svg.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_svg_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_testlib.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_testlib_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_texttospeech.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_texttospeech_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_theme_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uiplugin.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uitools.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uitools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_virtualkeyboard.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_virtualkeyboard_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webchannel.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webchannel_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webengine.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webengine_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecore.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecore_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginewidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_websockets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_websockets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webview.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webview_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_widgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_widgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xml.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xml_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xmlpatterns.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt_functions.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt_config.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/macx-clang/qmake.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/spec_post.prf \
.qmake.stash \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/exclusive_builds.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/sdk.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/toolchain.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/toolchain.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/default_pre.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/default_pre.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resolve_config.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/default_post.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/default_post.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/objective_c.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/mac.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/warn_on.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resources_functions.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resources.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/moc.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/unix/opengl.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/uic.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/unix/thread.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qmake_use.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/file_copies.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/rez.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/asset_catalogs.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/testcase_targets.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/exceptions.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/yacc.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/lex.prf \
05_OpticalCharacterRecognition.pro mainwindow.h \
screencapturer.h main.cpp \
mainwindow.cpp \
screencapturer.cpp
QMAKE_TARGET = 05_OpticalCharacterRecognition
DESTDIR =
TARGET = 05_OpticalCharacterRecognition.app/Contents/MacOS/05_OpticalCharacterRecognition
####### Custom Variables
EXPORT_QMAKE_MAC_SDK = macosx
EXPORT_QMAKE_MAC_SDK_VERSION = 13.3
EXPORT_QMAKE_XCODE_DEVELOPER_PATH = /Applications/Xcode.app/Contents/Developer
EXPORT__QMAKE_STASH_ = /Users/tonyfu/Desktop/OnlineCourses/OpenCV-Qt-App/05_OpticalCharacterRecognition/.qmake.stash
EXPORT_VALID_ARCHS = arm64
EXPORT_DEFAULT_ARCHS = arm64
EXPORT_ARCHS = $(filter $(EXPORT_VALID_ARCHS), $(if $(ARCHS), $(ARCHS), $(if $(EXPORT_DEFAULT_ARCHS), $(EXPORT_DEFAULT_ARCHS), $(EXPORT_VALID_ARCHS))))
EXPORT_ARCH_ARGS = $(foreach arch, $(if $(EXPORT_ARCHS), $(EXPORT_ARCHS), $(EXPORT_VALID_ARCHS)), -arch $(arch))
EXPORT__PRO_FILE_ = /Users/tonyfu/Desktop/OnlineCourses/OpenCV-Qt-App/05_OpticalCharacterRecognition/05_OpticalCharacterRecognition.pro
include /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/sdk.mk
first: all
####### Build rules
05_OpticalCharacterRecognition.app/Contents/MacOS/05_OpticalCharacterRecognition: $(OBJECTS)
@test -d 05_OpticalCharacterRecognition.app/Contents/MacOS/ || mkdir -p 05_OpticalCharacterRecognition.app/Contents/MacOS/
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
Makefile: 05_OpticalCharacterRecognition.pro /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/macx-clang/qmake.conf /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/spec_pre.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/qdevice.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/device_config.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/unix.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/mac.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/macx.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/sanitize.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/gcc-base.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/gcc-base-mac.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/clang.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/clang-mac.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/qconfig.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3danimation.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3danimation_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dcore.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dcore_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dextras.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dextras_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dinput.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dinput_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dlogic.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dlogic_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquick.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquick_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickanimation.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickextras.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickextras_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickinput.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickinput_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickrender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickrender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickscene2d.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3drender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3drender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_accessibility_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bluetooth.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bluetooth_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bodymovin_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bootstrap_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_charts.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_charts_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_clipboard_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_concurrent.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_concurrent_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_core.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_core_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_datavisualization.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_datavisualization_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_dbus.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_dbus_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designer.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designer_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designercomponents_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_edid_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_fb_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gamepad.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gamepad_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_graphics_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gui.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gui_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_help.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_help_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_location.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_location_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_macextras.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_macextras_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimedia.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimedia_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimediawidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_network.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_network_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_networkauth.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_networkauth_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_nfc.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_nfc_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_opengl.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_opengl_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_openglextensions.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_openglextensions_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_packetprotocol_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdf.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdf_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdfwidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdfwidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioning.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioning_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioningquick.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioningquick_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_printsupport.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_printsupport_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_purchasing.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_purchasing_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qml.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qml_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmldebug_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmldevtools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlmodels.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlmodels_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmltest.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmltest_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlworkerscript.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlworkerscript_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3d.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3d_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dassetimport.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dassetimport_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3drender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3drender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3druntimerender.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3druntimerender_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dutils.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dutils_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickcontrols2.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickparticles_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickshapes_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quicktemplates2.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickwidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickwidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_remoteobjects.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_remoteobjects_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_repparser.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_repparser_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_script.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_script_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scripttools.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scripttools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scxml.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scxml_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sensors.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sensors_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialbus.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialbus_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialport.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialport_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_service_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sql.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sql_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_svg.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_svg_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_testlib.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_testlib_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_texttospeech.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_texttospeech_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_theme_support_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uiplugin.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uitools.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uitools_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_virtualkeyboard.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_virtualkeyboard_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webchannel.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webchannel_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webengine.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webengine_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecore.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecore_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginewidgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_websockets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_websockets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webview.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webview_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_widgets.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_widgets_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xml.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xml_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xmlpatterns.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt_functions.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt_config.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/macx-clang/qmake.conf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/spec_post.prf \
.qmake.stash \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/exclusive_builds.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/sdk.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/toolchain.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/toolchain.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/default_pre.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/default_pre.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resolve_config.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/default_post.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/default_post.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/objective_c.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/mac.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/warn_on.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resources_functions.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resources.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/moc.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/unix/opengl.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/uic.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/unix/thread.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qmake_use.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/file_copies.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/rez.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/asset_catalogs.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/testcase_targets.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/exceptions.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/yacc.prf \
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/lex.prf \
05_OpticalCharacterRecognition.pro \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Resources/QtWidgets.prl \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Resources/QtGui.prl \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Resources/QtCore.prl
$(QMAKE) -o Makefile 05_OpticalCharacterRecognition.pro
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/spec_pre.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/qdevice.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/device_config.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/unix.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/mac.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/macx.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/sanitize.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/gcc-base.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/gcc-base-mac.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/clang.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/common/clang-mac.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/qconfig.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3danimation.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3danimation_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dcore.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dcore_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dextras.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dextras_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dinput.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dinput_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dlogic.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dlogic_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquick.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquick_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickanimation.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickanimation_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickextras.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickextras_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickinput.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickinput_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickrender.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickrender_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickscene2d.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3dquickscene2d_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3drender.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_3drender_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_accessibility_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bluetooth.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bluetooth_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bodymovin_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_bootstrap_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_charts.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_charts_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_clipboard_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_concurrent.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_concurrent_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_core.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_core_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_datavisualization.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_datavisualization_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_dbus.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_dbus_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designer.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designer_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_designercomponents_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_devicediscovery_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_edid_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_fb_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_fontdatabase_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gamepad.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gamepad_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_graphics_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gui.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_gui_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_help.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_help_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_location.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_location_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_macextras.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_macextras_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimedia.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimedia_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimediawidgets.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_multimediawidgets_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_network.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_network_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_networkauth.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_networkauth_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_nfc.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_nfc_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_opengl.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_opengl_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_openglextensions.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_openglextensions_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_packetprotocol_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdf.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdf_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdfwidgets.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_pdfwidgets_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_platformcompositor_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioning.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioning_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioningquick.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_positioningquick_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_printsupport.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_printsupport_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_purchasing.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_purchasing_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qml.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qml_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmldebug_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmldevtools_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlmodels.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlmodels_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmltest.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmltest_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlworkerscript.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qmlworkerscript_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3d.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3d_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dassetimport.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dassetimport_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3drender.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3drender_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3druntimerender.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3druntimerender_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dutils.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick3dutils_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quick_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickcontrols2.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickcontrols2_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickparticles_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickshapes_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quicktemplates2.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quicktemplates2_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickwidgets.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_quickwidgets_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_remoteobjects.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_remoteobjects_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_repparser.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_repparser_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_script.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_script_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scripttools.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scripttools_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scxml.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_scxml_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sensors.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sensors_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialbus.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialbus_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialport.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_serialport_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_service_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sql.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_sql_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_svg.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_svg_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_testlib.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_testlib_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_texttospeech.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_texttospeech_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_theme_support_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uiplugin.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uitools.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_uitools_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_virtualkeyboard.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_virtualkeyboard_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webchannel.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webchannel_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webengine.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webengine_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecore.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecore_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginewidgets.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webenginewidgets_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_websockets.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_websockets_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webview.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_webview_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_widgets.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_widgets_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xml.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xml_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xmlpatterns.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/modules/qt_lib_xmlpatterns_private.pri:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt_functions.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt_config.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/macx-clang/qmake.conf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/spec_post.prf:
.qmake.stash:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/exclusive_builds.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/sdk.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/toolchain.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/toolchain.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/default_pre.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/default_pre.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resolve_config.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/default_post.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/default_post.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/objective_c.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/mac.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/warn_on.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qt.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resources_functions.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/resources.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/moc.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/unix/opengl.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/uic.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/unix/thread.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/qmake_use.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/file_copies.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/rez.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/mac/asset_catalogs.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/testcase_targets.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/exceptions.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/yacc.prf:
/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/lex.prf:
05_OpticalCharacterRecognition.pro:
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Resources/QtWidgets.prl:
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Resources/QtGui.prl:
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Resources/QtCore.prl:
qmake: FORCE
@$(QMAKE) -o Makefile 05_OpticalCharacterRecognition.pro
qmake_all: FORCE
05_OpticalCharacterRecognition.app/Contents/PkgInfo:
@test -d 05_OpticalCharacterRecognition.app/Contents || mkdir -p 05_OpticalCharacterRecognition.app/Contents
@$(DEL_FILE) 05_OpticalCharacterRecognition.app/Contents/PkgInfo
@echo "APPL????" > 05_OpticalCharacterRecognition.app/Contents/PkgInfo
05_OpticalCharacterRecognition.app/Contents/Resources/empty.lproj:
@test -d 05_OpticalCharacterRecognition.app/Contents/Resources || mkdir -p 05_OpticalCharacterRecognition.app/Contents/Resources
@touch 05_OpticalCharacterRecognition.app/Contents/Resources/empty.lproj
05_OpticalCharacterRecognition.app/Contents/Info.plist:
@test -d 05_OpticalCharacterRecognition.app/Contents || mkdir -p 05_OpticalCharacterRecognition.app/Contents
@$(DEL_FILE) 05_OpticalCharacterRecognition.app/Contents/Info.plist
@sed -e "s,@SHORT_VERSION@,1.0,g" -e "s,\$${QMAKE_SHORT_VERSION},1.0,g" -e "s,@FULL_VERSION@,1.0.0,g" -e "s,\$${QMAKE_FULL_VERSION},1.0.0,g" -e "s,@TYPEINFO@,????,g" -e "s,\$${QMAKE_PKGINFO_TYPEINFO},????,g" -e "s,@BUNDLEIDENTIFIER@,com.yourcompany.05-OpticalCharacterRecognition,g" -e "s,\$${PRODUCT_BUNDLE_IDENTIFIER},com.yourcompany.05-OpticalCharacterRecognition,g" -e "s,\$${MACOSX_DEPLOYMENT_TARGET},10.13,g" -e "s,\$${IPHONEOS_DEPLOYMENT_TARGET},,g" -e "s,\$${TVOS_DEPLOYMENT_TARGET},,g" -e "s,\$${WATCHOS_DEPLOYMENT_TARGET},,g" -e "s,@ICON@,,g" -e "s,\$${ASSETCATALOG_COMPILER_APPICON_NAME},,g" -e "s,@EXECUTABLE@,05_OpticalCharacterRecognition,g" -e "s,@LIBRARY@,05_OpticalCharacterRecognition,g" -e "s,\$${EXECUTABLE_NAME},05_OpticalCharacterRecognition,g" -e "s,@TYPEINFO@,????,g" -e "s,\$${QMAKE_PKGINFO_TYPEINFO},????,g" /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/macx-clang/Info.plist.app >05_OpticalCharacterRecognition.app/Contents/Info.plist
all: Makefile \
05_OpticalCharacterRecognition.app/Contents/PkgInfo \
05_OpticalCharacterRecognition.app/Contents/Resources/empty.lproj \
05_OpticalCharacterRecognition.app/Contents/Info.plist 05_OpticalCharacterRecognition.app/Contents/MacOS/05_OpticalCharacterRecognition
dist: distdir FORCE
(cd `dirname $(DISTDIR)` && $(TAR) $(DISTNAME).tar $(DISTNAME) && $(COMPRESS) $(DISTNAME).tar) && $(MOVE) `dirname $(DISTDIR)`/$(DISTNAME).tar.gz . && $(DEL_FILE) -r $(DISTDIR)
distdir: FORCE
@test -d $(DISTDIR) || mkdir -p $(DISTDIR)
$(COPY_FILE) --parents $(DIST) $(DISTDIR)/
$(COPY_FILE) --parents /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/data/dummy.cpp $(DISTDIR)/
$(COPY_FILE) --parents mainwindow.h screencapturer.h $(DISTDIR)/
$(COPY_FILE) --parents main.cpp mainwindow.cpp screencapturer.cpp $(DISTDIR)/
clean: compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
distclean: clean
-$(DEL_FILE) -r 05_OpticalCharacterRecognition.app
-$(DEL_FILE) .qmake.stash
-$(DEL_FILE) Makefile
####### Sub-libraries
xcodeproj:
@$(QMAKE) -spec macx-xcode "$(EXPORT__PRO_FILE_)"
mocclean: compiler_moc_header_clean compiler_moc_objc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_objc_header_make_all compiler_moc_source_make_all
check: first
benchmark: first
compiler_rcc_make_all:
compiler_rcc_clean:
compiler_moc_predefs_make_all: moc_predefs.h
compiler_moc_predefs_clean:
-$(DEL_FILE) moc_predefs.h
moc_predefs.h: /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/data/dummy.cpp
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -pipe -stdlib=libc++ -O2 -std=gnu++11 $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -mmacosx-version-min=10.13 -Wall -Wextra -dM -E -o moc_predefs.h /opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/features/data/dummy.cpp
compiler_moc_header_make_all: moc_mainwindow.cpp moc_screencapturer.cpp
compiler_moc_header_clean:
-$(DEL_FILE) moc_mainwindow.cpp moc_screencapturer.cpp
moc_mainwindow.cpp: mainwindow.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QMainWindow \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qmainwindow.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QMenuBar \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qmenubar.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QToolBar \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qtoolbar.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QAction \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qaction.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QLabel \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qlabel.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QGraphicsScene \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qgraphicsscene.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QGraphicsView \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qgraphicsview.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QStatusBar \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qstatusbar.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QGraphicsPixmapItem \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qgraphicsitem.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/QPixmap \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/qpixmap.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QTextEdit \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qtextedit.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QCheckBox \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qcheckbox.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/QTimer \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/qtimer.h \
/opt/homebrew/include/tesseract_nested/tesseract/baseapi.h \
/opt/homebrew/include/tesseract_nested/tesseract/export.h \
/opt/homebrew/include/tesseract_nested/tesseract/pageiterator.h \
/opt/homebrew/include/tesseract_nested/tesseract/publictypes.h \
/opt/homebrew/include/tesseract_nested/tesseract/resultiterator.h \
/opt/homebrew/include/tesseract_nested/tesseract/ltrresultiterator.h \
/opt/homebrew/include/tesseract_nested/tesseract/unichar.h \
/opt/homebrew/include/tesseract_nested/tesseract/version.h \
/opt/homebrew/include/opencv4/opencv2/opencv.hpp \
/opt/homebrew/include/opencv4/opencv2/opencv_modules.hpp \
/opt/homebrew/include/opencv4/opencv2/core.hpp \
/opt/homebrew/include/opencv4/opencv2/core/cvdef.h \
/opt/homebrew/include/opencv4/opencv2/core/version.hpp \
/opt/homebrew/include/opencv4/opencv2/core/hal/interface.h \
/opt/homebrew/include/opencv4/opencv2/core/cv_cpu_dispatch.h \
/opt/homebrew/include/opencv4/opencv2/core/cv_cpu_helper.h \
/opt/homebrew/include/opencv4/opencv2/core/hal/msa_macros.h \
/opt/homebrew/include/opencv4/opencv2/core/fast_math.hpp \
/opt/homebrew/include/opencv4/opencv2/core/base.hpp \
/opt/homebrew/include/opencv4/opencv2/core/cvstd.hpp \
/opt/homebrew/include/opencv4/opencv2/core/cvstd_wrapper.hpp \
/opt/homebrew/include/opencv4/opencv2/core/neon_utils.hpp \
/opt/homebrew/include/opencv4/opencv2/core/vsx_utils.hpp \
/opt/homebrew/include/opencv4/opencv2/core/check.hpp \
/opt/homebrew/include/opencv4/opencv2/core/traits.hpp \
/opt/homebrew/include/opencv4/opencv2/core/matx.hpp \
/opt/homebrew/include/opencv4/opencv2/core/saturate.hpp \
/opt/homebrew/include/opencv4/opencv2/core/types.hpp \
/opt/homebrew/include/opencv4/opencv2/core/mat.hpp \
/opt/homebrew/include/opencv4/opencv2/core/bufferpool.hpp \
/opt/homebrew/include/opencv4/opencv2/core/mat.inl.hpp \
/opt/homebrew/include/opencv4/opencv2/core/persistence.hpp \
/opt/homebrew/include/opencv4/opencv2/core/operations.hpp \
/opt/homebrew/include/opencv4/opencv2/core/cvstd.inl.hpp \
/opt/homebrew/include/opencv4/opencv2/core/utility.hpp \
/opt/homebrew/include/opencv4/opencv2/core/utils/instrumentation.hpp \
/opt/homebrew/include/opencv4/opencv2/core/utils/tls.hpp \
/opt/homebrew/include/opencv4/opencv2/core/optim.hpp \
/opt/homebrew/include/opencv4/opencv2/core/ovx.hpp \
/opt/homebrew/include/opencv4/opencv2/calib3d.hpp \
/opt/homebrew/include/opencv4/opencv2/features2d.hpp \
/opt/homebrew/include/opencv4/opencv2/flann/miniflann.hpp \
/opt/homebrew/include/opencv4/opencv2/flann/defines.h \
/opt/homebrew/include/opencv4/opencv2/flann/config.h \
/opt/homebrew/include/opencv4/opencv2/core/affine.hpp \
/opt/homebrew/include/opencv4/opencv2/dnn.hpp \
/opt/homebrew/include/opencv4/opencv2/dnn/dnn.hpp \
/opt/homebrew/include/opencv4/opencv2/core/async.hpp \
/opt/homebrew/include/opencv4/opencv2/dnn/version.hpp \
/opt/homebrew/include/opencv4/opencv2/dnn/dict.hpp \
/opt/homebrew/include/opencv4/opencv2/dnn/layer.hpp \
/opt/homebrew/include/opencv4/opencv2/dnn/dnn.inl.hpp \
/opt/homebrew/include/opencv4/opencv2/dnn/utils/inference_engine.hpp \
/opt/homebrew/include/opencv4/opencv2/flann.hpp \
/opt/homebrew/include/opencv4/opencv2/flann/flann_base.hpp \
/opt/homebrew/include/opencv4/opencv2/flann/general.h \
/opt/homebrew/include/opencv4/opencv2/flann/matrix.h \
/opt/homebrew/include/opencv4/opencv2/flann/params.h \
/opt/homebrew/include/opencv4/opencv2/flann/any.h \
/opt/homebrew/include/opencv4/opencv2/flann/saving.h \
/opt/homebrew/include/opencv4/opencv2/flann/nn_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/result_set.h \
/opt/homebrew/include/opencv4/opencv2/flann/all_indices.h \
/opt/homebrew/include/opencv4/opencv2/flann/kdtree_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/dynamic_bitset.h \
/opt/homebrew/include/opencv4/opencv2/flann/dist.h \
/opt/homebrew/include/opencv4/opencv2/flann/heap.h \
/opt/homebrew/include/opencv4/opencv2/flann/allocator.h \
/opt/homebrew/include/opencv4/opencv2/flann/random.h \
/opt/homebrew/include/opencv4/opencv2/flann/kdtree_single_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/kmeans_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/logger.h \
/opt/homebrew/include/opencv4/opencv2/flann/composite_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/linear_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/hierarchical_clustering_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/lsh_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/lsh_table.h \
/opt/homebrew/include/opencv4/opencv2/flann/autotuned_index.h \
/opt/homebrew/include/opencv4/opencv2/flann/ground_truth.h \
/opt/homebrew/include/opencv4/opencv2/flann/index_testing.h \
/opt/homebrew/include/opencv4/opencv2/flann/timer.h \
/opt/homebrew/include/opencv4/opencv2/flann/sampling.h \
/opt/homebrew/include/opencv4/opencv2/highgui.hpp \
/opt/homebrew/include/opencv4/opencv2/imgcodecs.hpp \
/opt/homebrew/include/opencv4/opencv2/videoio.hpp \
/opt/homebrew/include/opencv4/opencv2/imgproc.hpp \
/opt/homebrew/include/opencv4/opencv2/imgproc/segmentation.hpp \
/opt/homebrew/include/opencv4/opencv2/ml.hpp \
/opt/homebrew/include/opencv4/opencv2/ml/ml.inl.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/aruco_detector.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/aruco_dictionary.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/aruco_board.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/graphical_code_detector.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/face.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/charuco_detector.hpp \
/opt/homebrew/include/opencv4/opencv2/objdetect/barcode.hpp \
/opt/homebrew/include/opencv4/opencv2/photo.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/warpers.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/warpers.hpp \
/opt/homebrew/include/opencv4/opencv2/core/cuda.hpp \
/opt/homebrew/include/opencv4/opencv2/core/cuda_types.hpp \
/opt/homebrew/include/opencv4/opencv2/core/cuda.inl.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/matchers.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/util.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/util_inl.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/camera.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/seam_finders.hpp \
/opt/homebrew/include/opencv4/opencv2/stitching/detail/blenders.hpp \
/opt/homebrew/include/opencv4/opencv2/video.hpp \
/opt/homebrew/include/opencv4/opencv2/video/tracking.hpp \
/opt/homebrew/include/opencv4/opencv2/video/background_segm.hpp \
screencapturer.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QWidget \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qwidget.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/QPaintEvent \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/qevent.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/QMouseEvent \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/QPoint \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/qpoint.h \
mainwindow.h \
moc_predefs.h \
/opt/homebrew/Cellar/qt@5/5.15.10/bin/moc
/opt/homebrew/Cellar/qt@5/5.15.10/bin/moc $(DEFINES) --include /Users/tonyfu/Desktop/OnlineCourses/OpenCV-Qt-App/05_OpticalCharacterRecognition/moc_predefs.h -I/opt/homebrew/Cellar/qt@5/5.15.10/mkspecs/macx-clang -I/Users/tonyfu/Desktop/OnlineCourses/OpenCV-Qt-App/05_OpticalCharacterRecognition -I/Users/tonyfu/Desktop/OnlineCourses/OpenCV-Qt-App/05_OpticalCharacterRecognition -I/opt/homebrew/include/opencv4 -I/opt/homebrew/include/tesseract_nested -I/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers -I/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers -I/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/c++/v1 -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -F/opt/homebrew/Cellar/qt@5/5.15.10/lib mainwindow.h -o moc_mainwindow.cpp
moc_screencapturer.cpp: screencapturer.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QWidget \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qwidget.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/QPixmap \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/qpixmap.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/QPaintEvent \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/qevent.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtGui.framework/Headers/QMouseEvent \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/QPoint \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/qpoint.h \
mainwindow.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QMainWindow \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qmainwindow.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QMenuBar \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qmenubar.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QToolBar \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qtoolbar.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QAction \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qaction.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QLabel \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qlabel.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QGraphicsScene \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qgraphicsscene.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QGraphicsView \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qgraphicsview.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QStatusBar \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qstatusbar.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QGraphicsPixmapItem \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qgraphicsitem.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QTextEdit \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qtextedit.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/QCheckBox \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtWidgets.framework/Headers/qcheckbox.h \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/QTimer \
/opt/homebrew/Cellar/qt@5/5.15.10/lib/QtCore.framework/Headers/qtimer.h \
/opt/homebrew/include/tesseract_nested/tesseract/baseapi.h \
/opt/homebrew/include/tesseract_nested/tesseract/export.h \
/opt/homebrew/include/tesseract_nested/tesseract/pageiterator.h \