-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
1124 lines (1069 loc) · 71.5 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: teamsAppPROCompiler.app/Contents/MacOS/teamsAppPROCompiler
# Generated by qmake (3.1) (Qt 6.4.1)
# Project: teamsAppPROCompiler.pro
# Template: app
# Command: /opt/homebrew/bin/qmake -o Makefile teamsAppPROCompiler.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 = -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_WEBSOCKETS_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB
CFLAGS = -pipe -O2 $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk -mmacosx-version-min=13.0 -Wall -Wextra $(DEFINES)
CXXFLAGS = -pipe -stdlib=libc++ -O2 -std=gnu++1z $(EXPORT_ARCH_ARGS) -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk -mmacosx-version-min=13.0 -Wall -Wextra $(DEFINES)
INCPATH = -I. -I/opt/homebrew/lib/QtGui.framework/Headers -I/opt/homebrew/lib/QtWebSockets.framework/Headers -I/opt/homebrew/lib/QtNetwork.framework/Headers -I/opt/homebrew/lib/QtCore.framework/Headers -I. -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/System/Library/Frameworks/AGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/System/Library/Frameworks/OpenGL.framework/Headers -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk/System/Library/Frameworks/AGL.framework/Headers -I/opt/homebrew/share/qt/mkspecs/macx-clang -F/opt/homebrew/lib
QMAKE = /opt/homebrew/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/bin/qmake -install qinstall
QINSTALL_PROGRAM = /opt/homebrew/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 = teamsAppPROCompiler1.0.0
DISTDIR = /Users/mateusz.jamroz/dev/teamsAppPROCompiler/.tmp/teamsAppPROCompiler1.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.0.sdk -mmacosx-version-min=13.0 -Wl,-rpath,@executable_path/../Frameworks -Wl,-rpath,/opt/homebrew/lib
LIBS = $(SUBLIBS) -F/opt/homebrew/lib -framework QtGui -framework AppKit -framework ImageIO -framework Metal -framework QtWebSockets -framework QtNetwork -framework QtCore -framework IOKit -framework DiskArbitration -framework AGL -framework OpenGL
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 = CustomException.cpp \
LoginWindow.cpp \
RegisterWindow.cpp \
StageManager.cpp \
main.cpp \
mainwindow.cpp moc_LoginWindow.cpp \
moc_RegisterWindow.cpp \
moc_mainwindow.cpp
OBJECTS = CustomException.o \
LoginWindow.o \
RegisterWindow.o \
StageManager.o \
main.o \
mainwindow.o \
moc_LoginWindow.o \
moc_RegisterWindow.o \
moc_mainwindow.o
DIST = /opt/homebrew/share/qt/mkspecs/features/spec_pre.prf \
/opt/homebrew/share/qt/mkspecs/features/device_config.prf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/unix.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/mac.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/macx.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/sanitize.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/gcc-base.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/gcc-base-mac.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/clang.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/clang-mac.conf \
/opt/homebrew/share/qt/mkspecs/qconfig.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3danimation.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3danimation_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dcore.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dcore_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dextras.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dextras_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dinput.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dinput_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dlogic.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dlogic_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickanimation.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickextras.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickextras_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickinput.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickinput_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickrender.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickrender_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickscene2d.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3drender.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3drender_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bluetooth.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bluetooth_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bodymovin_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_charts.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_charts_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_chartsqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_chartsqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_coap.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_coap_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_concurrent.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_concurrent_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core5compat.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core5compat_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualization.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualization_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualizationqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualizationqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_dbus.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_dbus_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_declarativeopcua.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_declarativeopcua_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designer.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designer_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designercomponents_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_fb_support_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_gui.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_gui_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_help.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_help_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_httpserver.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_httpserver_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_hunspellinputmethod.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_hunspellinputmethod_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_jsonrpc_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsanimation.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsanimation_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsfolderlistmodel.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsqmlmodels.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsqmlmodels_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssettings.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssettings_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssharedimage.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssharedimage_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labswavefrontmesh.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_languageserver_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_linguist.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_linguist_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_mqtt.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_mqtt_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimedia.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimedia_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediaquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediawidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_network.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_network_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_networkauth.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_networkauth_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_nfc.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_nfc_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opcua.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opcua_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opengl.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opengl_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_openglwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_openglwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_packetprotocol_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdf.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdf_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioning.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioning_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioningquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioningquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_printsupport.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_printsupport_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcompiler_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcore.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcore_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmldebug_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmldom_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlintegration.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlintegration_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmllocalstorage.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmllocalstorage_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlmodels.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlmodels_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmltest.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmltest_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlworkerscript.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlworkerscript_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlxmllistmodel.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlxmllistmodel_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3d.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3d_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetimport.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetimport_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetutils.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetutils_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3deffects.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3deffects_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dglslparser_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dhelpers.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dhelpers_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3diblbaker.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3diblbaker_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticleeffects.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticleeffects_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticles.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticles_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysics.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysics_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysicshelpers.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysicshelpers_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3druntimerender.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3druntimerender_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dspatialaudio_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dutils.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dutils_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2impl.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2impl_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrolstestutilsprivate_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2quickimpl.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2quickimpl_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2utils.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2utils_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicklayouts.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicklayouts_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickparticles_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickshapes_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktemplates2.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktestutilsprivate_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktimeline.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktimeline_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjects.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjects_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjectsqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjectsqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_repparser.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_repparser_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxmlqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxmlqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensors.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensors_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensorsquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensorsquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialbus.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialbus_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialport.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialport_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_shadertools.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_shadertools_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_spatialaudio.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_spatialaudio_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sql.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sql_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachine.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachine_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachineqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachineqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svg.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svg_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svgwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svgwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_testlib.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_testlib_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_texttospeech.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_texttospeech_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_tools_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uiplugin.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uitools.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uitools_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_virtualkeyboard.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_virtualkeyboard_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webchannel.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webchannel_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginecore.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginecore_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequickdelegatesqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequickdelegatesqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginewidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_websockets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_websockets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webview.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webview_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webviewquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webviewquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_widgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_widgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_xml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_xml_private.pri \
/opt/homebrew/share/qt/mkspecs/features/qt_functions.prf \
/opt/homebrew/share/qt/mkspecs/features/qt_config.prf \
/opt/homebrew/share/qt/mkspecs/macx-clang/qmake.conf \
/opt/homebrew/share/qt/mkspecs/features/spec_post.prf \
.qmake.stash \
/opt/homebrew/share/qt/mkspecs/features/exclusive_builds.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/sdk.prf \
/opt/homebrew/share/qt/mkspecs/features/toolchain.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/toolchain.prf \
/opt/homebrew/share/qt/mkspecs/features/default_pre.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/default_pre.prf \
/opt/homebrew/share/qt/mkspecs/features/resolve_config.prf \
/opt/homebrew/share/qt/mkspecs/features/default_post.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/default_post.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/objective_c.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/mac.prf \
/opt/homebrew/share/qt/mkspecs/features/warn_on.prf \
/opt/homebrew/share/qt/mkspecs/features/qt.prf \
/opt/homebrew/share/qt/mkspecs/features/resources_functions.prf \
/opt/homebrew/share/qt/mkspecs/features/resources.prf \
/opt/homebrew/share/qt/mkspecs/features/moc.prf \
/opt/homebrew/share/qt/mkspecs/features/unix/opengl.prf \
/opt/homebrew/share/qt/mkspecs/features/unix/thread.prf \
/opt/homebrew/share/qt/mkspecs/features/qmake_use.prf \
/opt/homebrew/share/qt/mkspecs/features/file_copies.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/rez.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/asset_catalogs.prf \
/opt/homebrew/share/qt/mkspecs/features/testcase_targets.prf \
/opt/homebrew/share/qt/mkspecs/features/exceptions.prf \
/opt/homebrew/share/qt/mkspecs/features/yacc.prf \
/opt/homebrew/share/qt/mkspecs/features/lex.prf \
teamsAppPROCompiler.pro CustomException.h \
LoginWindow.h \
RegisterWindow.h \
StageManager.h \
mainwindow.h CustomException.cpp \
LoginWindow.cpp \
RegisterWindow.cpp \
StageManager.cpp \
main.cpp \
mainwindow.cpp
QMAKE_TARGET = teamsAppPROCompiler
DESTDIR =
TARGET = teamsAppPROCompiler.app/Contents/MacOS/teamsAppPROCompiler
####### Custom Variables
EXPORT_QMAKE_MAC_SDK = macosx
EXPORT_QMAKE_MAC_SDK_VERSION = 13.0
EXPORT_QMAKE_XCODE_DEVELOPER_PATH = /Applications/Xcode.app/Contents/Developer
EXPORT__QMAKE_STASH_ = /Users/mateusz.jamroz/dev/teamsAppPROCompiler/.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/mateusz.jamroz/dev/teamsAppPROCompiler/teamsAppPROCompiler.pro
include /opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/features/mac/sdk.mk
first: all
####### Build rules
teamsAppPROCompiler.app/Contents/MacOS/teamsAppPROCompiler: $(OBJECTS)
@test -d teamsAppPROCompiler.app/Contents/MacOS/ || mkdir -p teamsAppPROCompiler.app/Contents/MacOS/
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
Makefile: teamsAppPROCompiler.pro /opt/homebrew/share/qt/mkspecs/macx-clang/qmake.conf /opt/homebrew/share/qt/mkspecs/features/spec_pre.prf \
/opt/homebrew/share/qt/mkspecs/features/device_config.prf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/unix.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/mac.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/macx.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/sanitize.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/gcc-base.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/gcc-base-mac.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/clang.conf \
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/clang-mac.conf \
/opt/homebrew/share/qt/mkspecs/qconfig.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3danimation.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3danimation_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dcore.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dcore_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dextras.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dextras_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dinput.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dinput_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dlogic.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dlogic_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickanimation.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickextras.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickextras_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickinput.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickinput_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickrender.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickrender_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickscene2d.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3drender.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3drender_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bluetooth.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bluetooth_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bodymovin_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_charts.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_charts_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_chartsqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_chartsqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_coap.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_coap_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_concurrent.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_concurrent_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core5compat.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core5compat_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualization.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualization_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualizationqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualizationqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_dbus.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_dbus_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_declarativeopcua.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_declarativeopcua_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designer.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designer_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designercomponents_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_fb_support_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_gui.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_gui_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_help.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_help_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_httpserver.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_httpserver_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_hunspellinputmethod.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_hunspellinputmethod_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_jsonrpc_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsanimation.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsanimation_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsfolderlistmodel.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsqmlmodels.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsqmlmodels_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssettings.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssettings_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssharedimage.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssharedimage_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labswavefrontmesh.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_languageserver_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_linguist.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_linguist_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_mqtt.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_mqtt_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimedia.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimedia_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediaquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediawidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_network.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_network_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_networkauth.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_networkauth_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_nfc.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_nfc_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opcua.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opcua_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opengl.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opengl_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_openglwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_openglwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_packetprotocol_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdf.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdf_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioning.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioning_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioningquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioningquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_printsupport.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_printsupport_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcompiler_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcore.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcore_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmldebug_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmldom_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlintegration.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlintegration_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmllocalstorage.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmllocalstorage_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlmodels.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlmodels_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmltest.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmltest_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlworkerscript.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlworkerscript_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlxmllistmodel.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlxmllistmodel_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3d.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3d_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetimport.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetimport_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetutils.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetutils_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3deffects.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3deffects_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dglslparser_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dhelpers.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dhelpers_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3diblbaker.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3diblbaker_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticleeffects.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticleeffects_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticles.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticles_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysics.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysics_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysicshelpers.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysicshelpers_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3druntimerender.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3druntimerender_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dspatialaudio_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dutils.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dutils_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2impl.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2impl_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrolstestutilsprivate_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2quickimpl.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2quickimpl_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2utils.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2utils_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicklayouts.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicklayouts_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickparticles_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickshapes_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktemplates2.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktestutilsprivate_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktimeline.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktimeline_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjects.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjects_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjectsqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjectsqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_repparser.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_repparser_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxmlqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxmlqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensors.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensors_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensorsquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensorsquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialbus.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialbus_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialport.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialport_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_shadertools.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_shadertools_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_spatialaudio.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_spatialaudio_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sql.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sql_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachine.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachine_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachineqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachineqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svg.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svg_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svgwidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svgwidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_testlib.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_testlib_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_texttospeech.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_texttospeech_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_tools_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uiplugin.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uitools.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uitools_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_virtualkeyboard.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_virtualkeyboard_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webchannel.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webchannel_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginecore.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginecore_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequickdelegatesqml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequickdelegatesqml_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginewidgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_websockets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_websockets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webview.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webview_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webviewquick.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webviewquick_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_widgets.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_widgets_private.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_xml.pri \
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_xml_private.pri \
/opt/homebrew/share/qt/mkspecs/features/qt_functions.prf \
/opt/homebrew/share/qt/mkspecs/features/qt_config.prf \
/opt/homebrew/share/qt/mkspecs/macx-clang/qmake.conf \
/opt/homebrew/share/qt/mkspecs/features/spec_post.prf \
.qmake.stash \
/opt/homebrew/share/qt/mkspecs/features/exclusive_builds.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/sdk.prf \
/opt/homebrew/share/qt/mkspecs/features/toolchain.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/toolchain.prf \
/opt/homebrew/share/qt/mkspecs/features/default_pre.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/default_pre.prf \
/opt/homebrew/share/qt/mkspecs/features/resolve_config.prf \
/opt/homebrew/share/qt/mkspecs/features/default_post.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/default_post.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/objective_c.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/mac.prf \
/opt/homebrew/share/qt/mkspecs/features/warn_on.prf \
/opt/homebrew/share/qt/mkspecs/features/qt.prf \
/opt/homebrew/share/qt/mkspecs/features/resources_functions.prf \
/opt/homebrew/share/qt/mkspecs/features/resources.prf \
/opt/homebrew/share/qt/mkspecs/features/moc.prf \
/opt/homebrew/share/qt/mkspecs/features/unix/opengl.prf \
/opt/homebrew/share/qt/mkspecs/features/unix/thread.prf \
/opt/homebrew/share/qt/mkspecs/features/qmake_use.prf \
/opt/homebrew/share/qt/mkspecs/features/file_copies.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/rez.prf \
/opt/homebrew/share/qt/mkspecs/features/mac/asset_catalogs.prf \
/opt/homebrew/share/qt/mkspecs/features/testcase_targets.prf \
/opt/homebrew/share/qt/mkspecs/features/exceptions.prf \
/opt/homebrew/share/qt/mkspecs/features/yacc.prf \
/opt/homebrew/share/qt/mkspecs/features/lex.prf \
teamsAppPROCompiler.pro \
/opt/homebrew/lib/QtGui.framework/Resources/QtGui.prl \
/opt/homebrew/lib/QtWebSockets.framework/Resources/QtWebSockets.prl \
/opt/homebrew/lib/QtNetwork.framework/Resources/QtNetwork.prl \
/opt/homebrew/lib/QtCore.framework/Resources/QtCore.prl
$(QMAKE) -o Makefile teamsAppPROCompiler.pro
/opt/homebrew/share/qt/mkspecs/features/spec_pre.prf:
/opt/homebrew/share/qt/mkspecs/features/device_config.prf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/unix.conf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/mac.conf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/macx.conf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/sanitize.conf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/gcc-base.conf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/gcc-base-mac.conf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/clang.conf:
/opt/homebrew/Cellar/qt/6.4.1_1/share/qt/mkspecs/common/clang-mac.conf:
/opt/homebrew/share/qt/mkspecs/qconfig.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3danimation.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3danimation_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dcore.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dcore_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dextras.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dextras_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dinput.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dinput_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dlogic.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dlogic_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquick.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickanimation.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickanimation_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickextras.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickextras_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickinput.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickinput_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickrender.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickrender_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickscene2d.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3dquickscene2d_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3drender.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_3drender_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bluetooth.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bluetooth_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_bodymovin_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_charts.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_charts_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_chartsqml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_chartsqml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_coap.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_coap_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_concurrent.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_concurrent_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core5compat.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core5compat_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_core_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualization.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualization_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualizationqml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_datavisualizationqml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_dbus.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_dbus_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_declarativeopcua.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_declarativeopcua_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designer.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designer_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_designercomponents_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_devicediscovery_support_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_fb_support_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_gui.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_gui_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_help.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_help_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_httpserver.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_httpserver_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_hunspellinputmethod.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_hunspellinputmethod_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_jsonrpc_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsanimation.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsanimation_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsfolderlistmodel.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsfolderlistmodel_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsqmlmodels.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labsqmlmodels_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssettings.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssettings_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssharedimage.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labssharedimage_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labswavefrontmesh.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_labswavefrontmesh_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_languageserver_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_linguist.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_linguist_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_mqtt.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_mqtt_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimedia.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimedia_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediaquick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediawidgets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_multimediawidgets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_network.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_network_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_networkauth.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_networkauth_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_nfc.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_nfc_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opcua.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opcua_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opengl.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_opengl_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_openglwidgets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_openglwidgets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_packetprotocol_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdf.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdf_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfquick.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfquick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfwidgets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_pdfwidgets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioning.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioning_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioningquick.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_positioningquick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_printsupport.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_printsupport_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcompiler_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcore.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlcore_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmldebug_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmldom_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlintegration.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlintegration_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmllocalstorage.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmllocalstorage_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlmodels.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlmodels_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmltest.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmltest_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlworkerscript.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlworkerscript_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlxmllistmodel.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_qmlxmllistmodel_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3d.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3d_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetimport.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetimport_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetutils.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dassetutils_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3deffects.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3deffects_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dglslparser_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dhelpers.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dhelpers_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3diblbaker.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3diblbaker_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticleeffects.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticleeffects_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticles.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dparticles_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysics.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysics_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysicshelpers.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dphysicshelpers_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3druntimerender.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3druntimerender_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dspatialaudio_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dutils.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick3dutils_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2impl.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrols2impl_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickcontrolstestutilsprivate_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2quickimpl.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2quickimpl_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2utils.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickdialogs2utils_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicklayouts.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicklayouts_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickparticles_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickshapes_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktemplates2.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktemplates2_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktestutilsprivate_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktimeline.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quicktimeline_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickwidgets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_quickwidgets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjects.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjects_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjectsqml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_remoteobjectsqml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_repparser.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_repparser_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxmlqml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_scxmlqml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensors.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensors_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensorsquick.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sensorsquick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialbus.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialbus_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialport.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_serialport_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_shadertools.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_shadertools_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_spatialaudio.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_spatialaudio_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sql.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_sql_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachine.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachine_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachineqml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_statemachineqml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svg.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svg_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svgwidgets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_svgwidgets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_testlib.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_testlib_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_texttospeech.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_texttospeech_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_tools_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uiplugin.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uitools.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_uitools_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_virtualkeyboard.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_virtualkeyboard_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webchannel.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webchannel_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginecore.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginecore_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequick.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequickdelegatesqml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginequickdelegatesqml_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginewidgets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webenginewidgets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_websockets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_websockets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webview.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webview_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webviewquick.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_webviewquick_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_widgets.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_widgets_private.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_xml.pri:
/opt/homebrew/share/qt/mkspecs/modules/qt_lib_xml_private.pri:
/opt/homebrew/share/qt/mkspecs/features/qt_functions.prf:
/opt/homebrew/share/qt/mkspecs/features/qt_config.prf:
/opt/homebrew/share/qt/mkspecs/macx-clang/qmake.conf:
/opt/homebrew/share/qt/mkspecs/features/spec_post.prf:
.qmake.stash:
/opt/homebrew/share/qt/mkspecs/features/exclusive_builds.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/sdk.prf:
/opt/homebrew/share/qt/mkspecs/features/toolchain.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/toolchain.prf:
/opt/homebrew/share/qt/mkspecs/features/default_pre.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/default_pre.prf:
/opt/homebrew/share/qt/mkspecs/features/resolve_config.prf:
/opt/homebrew/share/qt/mkspecs/features/default_post.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/default_post.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/objective_c.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/mac.prf:
/opt/homebrew/share/qt/mkspecs/features/warn_on.prf:
/opt/homebrew/share/qt/mkspecs/features/qt.prf:
/opt/homebrew/share/qt/mkspecs/features/resources_functions.prf:
/opt/homebrew/share/qt/mkspecs/features/resources.prf:
/opt/homebrew/share/qt/mkspecs/features/moc.prf:
/opt/homebrew/share/qt/mkspecs/features/unix/opengl.prf:
/opt/homebrew/share/qt/mkspecs/features/unix/thread.prf:
/opt/homebrew/share/qt/mkspecs/features/qmake_use.prf:
/opt/homebrew/share/qt/mkspecs/features/file_copies.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/rez.prf:
/opt/homebrew/share/qt/mkspecs/features/mac/asset_catalogs.prf:
/opt/homebrew/share/qt/mkspecs/features/testcase_targets.prf:
/opt/homebrew/share/qt/mkspecs/features/exceptions.prf:
/opt/homebrew/share/qt/mkspecs/features/yacc.prf:
/opt/homebrew/share/qt/mkspecs/features/lex.prf:
teamsAppPROCompiler.pro:
/opt/homebrew/lib/QtGui.framework/Resources/QtGui.prl:
/opt/homebrew/lib/QtWebSockets.framework/Resources/QtWebSockets.prl:
/opt/homebrew/lib/QtNetwork.framework/Resources/QtNetwork.prl:
/opt/homebrew/lib/QtCore.framework/Resources/QtCore.prl:
qmake: FORCE
@$(QMAKE) -o Makefile teamsAppPROCompiler.pro
qmake_all: FORCE
teamsAppPROCompiler.app/Contents/PkgInfo:
@test -d teamsAppPROCompiler.app/Contents || mkdir -p teamsAppPROCompiler.app/Contents
@$(DEL_FILE) teamsAppPROCompiler.app/Contents/PkgInfo
@echo "APPL????" > teamsAppPROCompiler.app/Contents/PkgInfo
teamsAppPROCompiler.app/Contents/Resources/empty.lproj:
@test -d teamsAppPROCompiler.app/Contents/Resources || mkdir -p teamsAppPROCompiler.app/Contents/Resources
@touch teamsAppPROCompiler.app/Contents/Resources/empty.lproj
teamsAppPROCompiler.app/Contents/Info.plist:
@test -d teamsAppPROCompiler.app/Contents || mkdir -p teamsAppPROCompiler.app/Contents
@$(DEL_FILE) teamsAppPROCompiler.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@,matjamr.teamsAppPROCompiler,g" -e "s,\$${PRODUCT_BUNDLE_IDENTIFIER},matjamr.teamsAppPROCompiler,g" -e "s,\$${MACOSX_DEPLOYMENT_TARGET},13.0,g" -e "s,\$${IPHONEOS_DEPLOYMENT_TARGET},,g" -e "s,\$${TVOS_DEPLOYMENT_TARGET},,g" -e "s,\$${WATCHOS_DEPLOYMENT_TARGET},,g" -e "s,\$${IOS_LAUNCH_SCREEN},LaunchScreen,g" -e "s,@ICON@,,g" -e "s,\$${ASSETCATALOG_COMPILER_APPICON_NAME},,g" -e "s,@EXECUTABLE@,teamsAppPROCompiler,g" -e "s,@LIBRARY@,teamsAppPROCompiler,g" -e "s,\$${EXECUTABLE_NAME},teamsAppPROCompiler,g" -e "s,@TYPEINFO@,????,g" -e "s,\$${QMAKE_PKGINFO_TYPEINFO},????,g" /opt/homebrew/share/qt/mkspecs/macx-clang/Info.plist.app >teamsAppPROCompiler.app/Contents/Info.plist
all: Makefile \
teamsAppPROCompiler.app/Contents/PkgInfo \
teamsAppPROCompiler.app/Contents/Resources/empty.lproj \
teamsAppPROCompiler.app/Contents/Info.plist teamsAppPROCompiler.app/Contents/MacOS/teamsAppPROCompiler
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/share/qt/mkspecs/features/data/dummy.cpp $(DISTDIR)/
$(COPY_FILE) --parents CustomException.h LoginWindow.h RegisterWindow.h StageManager.h mainwindow.h $(DISTDIR)/
$(COPY_FILE) --parents CustomException.cpp LoginWindow.cpp RegisterWindow.cpp StageManager.cpp main.cpp mainwindow.cpp $(DISTDIR)/
clean: compiler_clean
-$(DEL_FILE) $(OBJECTS)
-$(DEL_FILE) *~ core *.core
distclean: clean
-$(DEL_FILE) -r teamsAppPROCompiler.app