-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.Release
More file actions
1355 lines (1316 loc) · 96 KB
/
Makefile.Release
File metadata and controls
1355 lines (1316 loc) · 96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#############################################################################
# Makefile for building: FlockSim
# Project: src/FlockSim.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Release
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DUNICODE -DQT_STATIC_BUILD -DQT_DEPRECATED_WARNINGS -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CONCURRENT_LIB -DQT_CORE_LIB -DQT_NEEDS_QMAIN
CFLAGS = -fno-keep-inline-dllexport -pipe -Os -momit-leaf-frame-pointer -Wextra -Wall -W $(DEFINES)
CXXFLAGS = -fno-keep-inline-dllexport -pipe -O2 -std=gnu++11 -Wextra -Wall -W -fexceptions -mthreads $(DEFINES)
INCPATH = -I./src -I. -IC:/Qt/Static591/5.9.1_Static/include -IC:/Qt/Static591/5.9.1_Static/include/QtOpenGL -IC:/Qt/Static591/5.9.1_Static/include/QtWidgets -IC:/Qt/Static591/5.9.1_Static/include/QtGui -IC:/Qt/Static591/5.9.1_Static/include/QtConcurrent -IC:/Qt/Static591/5.9.1_Static/include/QtCore -Irelease -I. -IC:/Qt/Static591/5.9.1_Static/mkspecs/win32-g++
LINKER = g++
LFLAGS = -static -static-libgcc -Wl,-s -Wl,-subsystem,windows -mthreads
LIBS = -lmingw32 -LC:/Qt/Static591/5.9.1_Static/lib C:/Qt/Static591/5.9.1_Static/lib/libqtmain.a -lOpengl32 -glu32 -LC:/Qt/Static591/5.9.1_Static/plugins/platforms C:/Qt/Static591/5.9.1_Static/plugins/platforms/libqwindows.a -lwinspool -lshlwapi C:/Qt/Static591/5.9.1_Static/lib/libQt5EventDispatcherSupport.a C:/Qt/Static591/5.9.1_Static/lib/libQt5AccessibilitySupport.a C:/Qt/Static591/5.9.1_Static/lib/libQt5FontDatabaseSupport.a C:/Qt/Static591/5.9.1_Static/lib/libqtfreetype.a C:/Qt/Static591/5.9.1_Static/lib/libQt5ThemeSupport.a -LC:/Qt/Static591/5.9.1_Static/plugins/imageformats C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqgif.a C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqicns.a C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqico.a C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqjpeg.a C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqtga.a C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqtiff.a C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqwbmp.a C:/Qt/Static591/5.9.1_Static/plugins/imageformats/libqwebp.a C:/Qt/Static591/5.9.1_Static/lib/libQt5OpenGL.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Widgets.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Widgets.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Gui.a -luxtheme -ldwmapi C:/Qt/Static591/5.9.1_Static/lib/libQt5Gui.a -lcomdlg32 -loleaut32 -limm32 -lglu32 -lopengl32 -lgdi32 C:/Qt/Static591/5.9.1_Static/lib/libqtlibpng.a C:/Qt/Static591/5.9.1_Static/lib/libqtharfbuzz.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Concurrent.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Core.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Core.a -lole32 -luuid -lws2_32 -ladvapi32 -lshell32 -luser32 -lkernel32 -lmpr -lversion -lwinmm C:/Qt/Static591/5.9.1_Static/lib/libqtpcre2.a
QMAKE = C:/Qt/Static591/5.9.1_Static/bin/qmake.exe
IDC = idc
IDL = midl
ZIP =
DEF_FILE =
RES_FILE =
COPY = cp -f
SED = sed
COPY_FILE = cp -f
COPY_DIR = cp -f -R
DEL_FILE = rm -f
DEL_DIR = rmdir
MOVE = mv -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
INSTALL_FILE = cp -f
INSTALL_PROGRAM = cp -f
INSTALL_DIR = cp -f -R
QINSTALL = C:/Qt/Static591/5.9.1_Static/bin/qmake.exe -install qinstall
QINSTALL_PROGRAM = C:/Qt/Static591/5.9.1_Static/bin/qmake.exe -install qinstall -exe
####### Output directory
OBJECTS_DIR = release/
####### Files
SOURCES = src/main.cpp \
src/mainwindow.cpp \
src/Flock.cpp "./flocksim_plugin_import.cpp" \
release/moc_Flock.cpp \
release/moc_mainwindow.cpp
OBJECTS = release/main.o \
release/mainwindow.o \
release/Flock.o \
release/flocksim_plugin_import.o \
release/moc_Flock.o \
release/moc_mainwindow.o
DIST = src/Boid.h \
src/Flock.h \
src/Pvector.h \
src/mainwindow.h src/main.cpp \
src/mainwindow.cpp \
src/Flock.cpp
QMAKE_TARGET = FlockSim
DESTDIR = release/ #avoid trailing-slash linebreak
TARGET = FlockSim.exe
DESTDIR_TARGET = release/FlockSim.exe
####### Build rules
first: all
all: Makefile.Release $(DESTDIR_TARGET)
$(DESTDIR_TARGET): C:/Qt/Static591/5.9.1_Static/lib/libQt5OpenGL.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Widgets.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Gui.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Concurrent.a C:/Qt/Static591/5.9.1_Static/lib/libQt5Core.a ui_mainwindow.h $(OBJECTS)
$(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) $(OBJECTS) $(LIBS)
qmake: FORCE
@$(QMAKE) -o Makefile.Release src/FlockSim.pro -spec win32-g++ CONFIG+=release
qmake_all: FORCE
dist:
$(ZIP) FlockSim.zip $(SOURCES) $(DIST) src/FlockSim.pro C:/Qt/Static591/5.9.1_Static/mkspecs/features/spec_pre.prf C:/Qt/Static591/5.9.1_Static/mkspecs/qdevice.pri C:/Qt/Static591/5.9.1_Static/mkspecs/features/device_config.prf C:/Qt/Static591/5.9.1_Static/mkspecs/common/g++-base.conf C:/Qt/Static591/5.9.1_Static/mkspecs/common/angle.conf C:/Qt/Static591/5.9.1_Static/mkspecs/common/sanitize.conf C:/Qt/Static591/5.9.1_Static/mkspecs/common/gcc-base.conf C:/Qt/Static591/5.9.1_Static/mkspecs/qconfig.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3danimation.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3danimation_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dcore.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dcore_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dextras.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dextras_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dinput.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dinput_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dlogic.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dlogic_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquick.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquick_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickanimation.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickanimation_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickextras.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickextras_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickinput.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickinput_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickrender.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickrender_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickscene2d.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3dquickscene2d_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3drender.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_3drender_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_accessibility_support_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_axbase.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_axbase_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_axcontainer.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_axcontainer_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_axserver.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_axserver_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_bluetooth.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_bluetooth_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_bootstrap_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_charts.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_charts_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_concurrent.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_concurrent_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_core.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_core_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_datavisualization.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_datavisualization_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_dbus.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_dbus_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_devicediscovery_support_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_fb_support_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_fontdatabase_support_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_gamepad.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_gamepad_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_gui.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_gui_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_help.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_help_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_multimedia.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_multimedia_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_multimediawidgets.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_multimediawidgets_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_network.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_network_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_nfc.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_nfc_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_opengl.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_opengl_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_openglextensions.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_openglextensions_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_packetprotocol_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_platformcompositor_support_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_printsupport.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_printsupport_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_purchasing.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_purchasing_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_qml.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_qml_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_qmldebug_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_qmldevtools_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_qmltest.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_qmltest_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quick.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quick_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quickcontrols2.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quickcontrols2_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quickparticles_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quicktemplates2_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quickwidgets.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_quickwidgets_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_remoteobjects.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_remoteobjects_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_repparser.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_repparser_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_script.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_script_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_scripttools.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_scripttools_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_scxml.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_scxml_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_sensors.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_sensors_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_serialbus.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_serialbus_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_serialport.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_serialport_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_sql.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_sql_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_svg.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_svg_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_testlib.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_testlib_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_texttospeech.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_texttospeech_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_theme_support_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_uiplugin.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_uitools.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_uitools_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_webchannel.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_webchannel_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_websockets.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_websockets_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_widgets.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_widgets_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_winextras.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_winextras_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_xml.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_xml_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_xmlpatterns.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_xmlpatterns_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_lib_zlib_private.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_assimpsceneimport.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_defaultgeometryloader.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_dsengine.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_gltfgeometryloader.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_gltfsceneexport.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_gltfsceneimport.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qgenericbearer.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qgif.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qicns.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qico.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qjpeg.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qminimal.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_debugger.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_inspector.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_local.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_messages.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_native.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_nativedebugger.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_profiler.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_quickprofiler.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_server.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qmldbg_tcp.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qnativewifibearer.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qoffscreen.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qsqlite.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qsqlodbc.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qsvg.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qsvgicon.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtaudio_windows.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtexttospeech_sapi.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtga.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtiff.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtmedia_audioengine.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtmultimedia_m3u.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtpeakcanbus.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtsensorgestures_plugin.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtsensorgestures_shakeplugin.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtsensors_generic.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtsysteccanbus.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qttinycanbus.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtuiotouchplugin.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qtvectorcanbus.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qwbmp.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qwebp.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_qwindows.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_scene2d.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_windowsprintersupport.pri C:/Qt/Static591/5.9.1_Static/mkspecs/modules/qt_plugin_xinputgamepad.pri C:/Qt/Static591/5.9.1_Static/mkspecs/features/qt_functions.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/qt_config.prf C:/Qt/Static591/5.9.1_Static/mkspecs/win32-g++/qmake.conf C:/Qt/Static591/5.9.1_Static/mkspecs/features/spec_post.prf .qmake.stash C:/Qt/Static591/5.9.1_Static/mkspecs/features/exclusive_builds.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/toolchain.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/default_pre.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/win32/default_pre.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/resolve_config.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/exclusive_builds_post.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/default_post.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/build_pass.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/precompile_header.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/warn_on.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/qt.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/resources.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/moc.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/win32/opengl.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/uic.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/qmake_use.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/file_copies.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/win32/windows.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/testcase_targets.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/exceptions.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/yacc.prf C:/Qt/Static591/5.9.1_Static/mkspecs/features/lex.prf src/FlockSim.pro C:/Qt/Static591/5.9.1_Static/lib/qtmain.prl C:/Qt/Static591/5.9.1_Static/plugins/platforms/qwindows.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qgif.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qicns.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qico.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qjpeg.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qtga.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qtiff.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qwbmp.prl C:/Qt/Static591/5.9.1_Static/plugins/imageformats/qwebp.prl C:/Qt/Static591/5.9.1_Static/lib/Qt5OpenGL.prl C:/Qt/Static591/5.9.1_Static/lib/Qt5Widgets.prl C:/Qt/Static591/5.9.1_Static/lib/Qt5Gui.prl C:/Qt/Static591/5.9.1_Static/lib/Qt5Concurrent.prl C:/Qt/Static591/5.9.1_Static/lib/Qt5Core.prl C:/Qt/Static591/5.9.1_Static/mkspecs/features/data/dummy.cpp src/Boid.h src/Flock.h src/Pvector.h src/mainwindow.h src/main.cpp src/mainwindow.cpp src/Flock.cpp src/mainwindow.ui
clean: compiler_clean
-$(DEL_FILE) release/main.o release/mainwindow.o release/Flock.o release/flocksim_plugin_import.o release/moc_Flock.o release/moc_mainwindow.o
distclean: clean
-$(DEL_FILE) "./flocksim_plugin_import.cpp" .qmake.stash
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Release
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
check: first
benchmark: first
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_rcc_make_all:
compiler_rcc_clean:
compiler_moc_predefs_make_all: release/moc_predefs.h
compiler_moc_predefs_clean:
-$(DEL_FILE) release/moc_predefs.h
release/moc_predefs.h: C:/Qt/Static591/5.9.1_Static/mkspecs/features/data/dummy.cpp
g++ -fno-keep-inline-dllexport -pipe -O2 -std=gnu++11 -Wextra -Wall -W -dM -E -o release/moc_predefs.h C:/Qt/Static591/5.9.1_Static/mkspecs/features/data/dummy.cpp
compiler_moc_header_make_all: release/moc_Flock.cpp release/moc_mainwindow.cpp
compiler_moc_header_clean:
-$(DEL_FILE) release/moc_Flock.cpp release/moc_mainwindow.cpp
release/moc_Flock.cpp: src/Boid.h \
src/Pvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QtGlobal \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig-bootstrapped.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtcore-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsystemdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qprocessordetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcompilerdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtypeinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsysinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlogging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qflags.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbasicatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_bootstrap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qgenericatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_cxx11.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_msvc.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobalstatic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmutex.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnumeric.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qversiontagging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QString \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstring.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qchar.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrefcount.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnamespace.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qarraydata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringbuilder.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/QGLWidget \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qgl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtguiglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtgui-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qt_windows.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengles2ext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopenglext.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgetsglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgets-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs_win.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qalgorithms.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiterator.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhashfunctions.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpair.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearraylist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qregexp.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringmatcher.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qscopedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmetatype.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvarlengtharray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontainerfwd.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmargins.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrect.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsize.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpoint.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpalette.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcolor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgb.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgba64.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qbrush.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qmatrix.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpolygon.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qregion.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatastream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiodevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qline.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtransform.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainterpath.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qimage.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixelformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qshareddata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhash.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfont.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontmetrics.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qsizepolicy.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcursor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qkeysequence.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvariant.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdebug.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtextstream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlocale.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qset.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontiguouscache.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurlquery.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfile.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfiledevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qvector2d.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtouchdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintengine.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainter.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtextoption.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpen.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qglcolormap.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qtopenglglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/QSurfaceFormat \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qsurfaceformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QApplication \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qeventloop.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qdesktopwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qguiapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qinputmethod.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QThread \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthread.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrun.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentcompilertest.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrent_global.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrunbase.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfuture.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfutureinterface.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrunnable.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qexception.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qresultstore.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthreadpool.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentstoredfunctioncall.h \
src/Flock.h \
release/moc_predefs.h \
C:/Qt/Static591/5.9.1_Static/bin/moc.exe
'C:\Qt\Static591\5.9.1_Static\bin\moc.exe' $(DEFINES) --include release/moc_predefs.h -IC:/Qt/Static591/5.9.1_Static/mkspecs/win32-g++ -I'C:/Users/Shreshth Tuli/Documents/GitHub/Starling-Flock-Simulator' -IC:/Qt/Static591/5.9.1_Static/include -IC:/Qt/Static591/5.9.1_Static/include/QtOpenGL -IC:/Qt/Static591/5.9.1_Static/include/QtWidgets -IC:/Qt/Static591/5.9.1_Static/include/QtGui -IC:/Qt/Static591/5.9.1_Static/include/QtConcurrent -IC:/Qt/Static591/5.9.1_Static/include/QtCore -I. -IC:/Qt/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include -IC:/Qt/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include-fixed -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++ -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++/i686-w64-mingw32 -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++/backward src/Flock.h -o release/moc_Flock.cpp
release/moc_mainwindow.cpp: C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QMainWindow \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qmainwindow.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgetsglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtguiglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig-bootstrapped.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtcore-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsystemdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qprocessordetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcompilerdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtypeinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsysinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlogging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qflags.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbasicatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_bootstrap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qgenericatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_cxx11.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_msvc.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobalstatic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmutex.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnumeric.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qversiontagging.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtgui-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgets-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnamespace.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs_win.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstring.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qchar.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrefcount.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qarraydata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringbuilder.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qalgorithms.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiterator.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhashfunctions.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpair.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearraylist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qregexp.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringmatcher.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qscopedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmetatype.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvarlengtharray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontainerfwd.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmargins.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrect.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsize.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpoint.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpalette.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcolor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgb.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgba64.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qbrush.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qmatrix.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpolygon.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qregion.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatastream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiodevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qline.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtransform.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainterpath.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qimage.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixelformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qshareddata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhash.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfont.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontmetrics.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qsizepolicy.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcursor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qkeysequence.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvariant.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdebug.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtextstream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlocale.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qset.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontiguouscache.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurlquery.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfile.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfiledevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qvector2d.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtouchdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtabwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qicon.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QWidget \
src/Flock.h \
src/Boid.h \
src/Pvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QtGlobal \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QString \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/QGLWidget \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qgl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qt_windows.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengles2ext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopenglext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintengine.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainter.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtextoption.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpen.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qglcolormap.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qtopenglglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/QSurfaceFormat \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qsurfaceformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QApplication \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qeventloop.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qdesktopwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qguiapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qinputmethod.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QThread \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthread.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrun.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentcompilertest.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrent_global.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrunbase.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfuture.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfutureinterface.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrunnable.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qexception.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qresultstore.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthreadpool.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentstoredfunctioncall.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QTime \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatetime.h \
src/mainwindow.h \
release/moc_predefs.h \
C:/Qt/Static591/5.9.1_Static/bin/moc.exe
'C:\Qt\Static591\5.9.1_Static\bin\moc.exe' $(DEFINES) --include release/moc_predefs.h -IC:/Qt/Static591/5.9.1_Static/mkspecs/win32-g++ -I'C:/Users/Shreshth Tuli/Documents/GitHub/Starling-Flock-Simulator' -IC:/Qt/Static591/5.9.1_Static/include -IC:/Qt/Static591/5.9.1_Static/include/QtOpenGL -IC:/Qt/Static591/5.9.1_Static/include/QtWidgets -IC:/Qt/Static591/5.9.1_Static/include/QtGui -IC:/Qt/Static591/5.9.1_Static/include/QtConcurrent -IC:/Qt/Static591/5.9.1_Static/include/QtCore -I. -IC:/Qt/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include -IC:/Qt/Tools/mingw530_32/lib/gcc/i686-w64-mingw32/5.3.0/include-fixed -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++ -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++/i686-w64-mingw32 -IC:/Qt/Tools/mingw530_32/i686-w64-mingw32/include/c++/backward src/mainwindow.h -o release/moc_mainwindow.cpp
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ui_mainwindow.h
compiler_uic_clean:
-$(DEL_FILE) ui_mainwindow.h
ui_mainwindow.h: src/mainwindow.ui \
C:/Qt/Static591/5.9.1_Static/bin/uic.exe \
src/flock.h \
src/Boid.h \
src/Pvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QtGlobal \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig-bootstrapped.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtcore-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsystemdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qprocessordetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcompilerdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtypeinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsysinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlogging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qflags.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbasicatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_bootstrap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qgenericatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_cxx11.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_msvc.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobalstatic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmutex.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnumeric.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qversiontagging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QString \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstring.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qchar.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrefcount.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnamespace.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qarraydata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringbuilder.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/QGLWidget \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qgl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtguiglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtgui-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qt_windows.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengles2ext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopenglext.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgetsglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgets-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs_win.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qalgorithms.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiterator.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhashfunctions.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpair.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearraylist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qregexp.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringmatcher.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qscopedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmetatype.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvarlengtharray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontainerfwd.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmargins.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrect.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsize.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpoint.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpalette.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcolor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgb.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgba64.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qbrush.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qmatrix.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpolygon.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qregion.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatastream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiodevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qline.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtransform.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainterpath.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qimage.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixelformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qshareddata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhash.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfont.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontmetrics.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qsizepolicy.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcursor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qkeysequence.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvariant.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdebug.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtextstream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlocale.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qset.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontiguouscache.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurlquery.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfile.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfiledevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qvector2d.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtouchdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintengine.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainter.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtextoption.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpen.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qglcolormap.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qtopenglglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/QSurfaceFormat \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qsurfaceformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QApplication \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qeventloop.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qdesktopwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qguiapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qinputmethod.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QThread \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthread.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrun.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentcompilertest.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrent_global.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrunbase.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfuture.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfutureinterface.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrunnable.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qexception.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qresultstore.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthreadpool.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentstoredfunctioncall.h
'C:\Qt\Static591\5.9.1_Static\bin\uic.exe' src/mainwindow.ui -o ui_mainwindow.h
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean: compiler_moc_predefs_clean compiler_moc_header_clean compiler_uic_clean
####### Compile
release/main.o: src/main.cpp src/mainwindow.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QMainWindow \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qmainwindow.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgetsglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtguiglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig-bootstrapped.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtcore-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsystemdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qprocessordetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcompilerdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtypeinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsysinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlogging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qflags.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbasicatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_bootstrap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qgenericatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_cxx11.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_msvc.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobalstatic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmutex.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnumeric.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qversiontagging.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtgui-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgets-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnamespace.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs_win.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstring.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qchar.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrefcount.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qarraydata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringbuilder.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qalgorithms.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiterator.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhashfunctions.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpair.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearraylist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qregexp.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringmatcher.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qscopedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmetatype.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvarlengtharray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontainerfwd.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmargins.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrect.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsize.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpoint.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpalette.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcolor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgb.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgba64.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qbrush.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qmatrix.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpolygon.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qregion.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatastream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiodevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qline.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtransform.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainterpath.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qimage.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixelformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qshareddata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhash.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfont.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontmetrics.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qsizepolicy.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcursor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qkeysequence.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvariant.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdebug.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtextstream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlocale.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qset.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontiguouscache.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurlquery.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfile.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfiledevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qvector2d.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtouchdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtabwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qicon.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QWidget \
src/Flock.h \
src/Boid.h \
src/Pvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QtGlobal \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QString \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/QGLWidget \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qgl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qt_windows.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengles2ext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopenglext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintengine.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainter.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtextoption.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpen.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qglcolormap.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qtopenglglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/QSurfaceFormat \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qsurfaceformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QApplication \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qeventloop.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qdesktopwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qguiapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qinputmethod.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QThread \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthread.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrun.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentcompilertest.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrent_global.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrunbase.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfuture.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfutureinterface.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrunnable.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qexception.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qresultstore.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthreadpool.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentstoredfunctioncall.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QTime \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatetime.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release/main.o src/main.cpp
release/mainwindow.o: src/mainwindow.cpp src/mainwindow.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QMainWindow \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qmainwindow.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgetsglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtguiglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig-bootstrapped.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtcore-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsystemdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qprocessordetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcompilerdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtypeinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsysinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlogging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qflags.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbasicatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_bootstrap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qgenericatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_cxx11.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_msvc.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobalstatic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmutex.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnumeric.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qversiontagging.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtgui-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgets-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnamespace.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs_win.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstring.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qchar.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrefcount.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qarraydata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringbuilder.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qalgorithms.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiterator.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhashfunctions.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpair.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearraylist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qregexp.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringmatcher.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qscopedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmetatype.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvarlengtharray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontainerfwd.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmargins.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrect.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsize.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpoint.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpalette.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcolor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgb.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgba64.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qbrush.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qmatrix.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpolygon.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qregion.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatastream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiodevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qline.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtransform.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainterpath.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qimage.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixelformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qshareddata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhash.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfont.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontmetrics.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qsizepolicy.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcursor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qkeysequence.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvariant.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdebug.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtextstream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlocale.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qset.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontiguouscache.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurlquery.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfile.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfiledevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qvector2d.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtouchdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtabwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qicon.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QWidget \
src/Flock.h \
src/Boid.h \
src/Pvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QtGlobal \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QString \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/QGLWidget \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qgl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qt_windows.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengles2ext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopenglext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintengine.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainter.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtextoption.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpen.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qglcolormap.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qtopenglglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/QSurfaceFormat \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qsurfaceformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QApplication \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qeventloop.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qdesktopwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qguiapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qinputmethod.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QThread \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthread.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrun.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentcompilertest.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrent_global.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrunbase.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfuture.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfutureinterface.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrunnable.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qexception.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qresultstore.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthreadpool.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentstoredfunctioncall.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QTime \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatetime.h \
ui_mainwindow.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/QKeyEvent
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release/mainwindow.o src/mainwindow.cpp
release/Flock.o: src/Flock.cpp src/Boid.h \
src/Pvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QtGlobal \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig-bootstrapped.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qconfig.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtcore-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsystemdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qprocessordetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcompilerdetection.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtypeinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsysinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlogging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qflags.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbasicatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_bootstrap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qgenericatomic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_cxx11.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qatomic_msvc.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qglobalstatic.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmutex.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnumeric.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qversiontagging.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QString \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstring.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qchar.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrefcount.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qnamespace.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qarraydata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringbuilder.h \
src/Flock.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/QGLWidget \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qgl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtguiglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtgui-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qt_windows.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopengles2ext.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qopenglext.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgetsglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qtwidgets-config.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobjectdefs_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qwindowdefs_win.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qalgorithms.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiterator.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhashfunctions.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpair.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qbytearraylist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringlist.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qregexp.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qstringmatcher.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qscopedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmetatype.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvarlengtharray.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontainerfwd.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qobject_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmargins.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrect.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsize.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qpoint.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpalette.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcolor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgb.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qrgba64.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qbrush.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvector.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qmatrix.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpolygon.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qregion.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdatastream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qiodevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qline.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtransform.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainterpath.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qimage.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixelformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpixmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qshareddata.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qhash.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qsharedpointer_impl.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfont.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontmetrics.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qfontinfo.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qsizepolicy.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qcursor.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qkeysequence.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qevent.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qvariant.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qmap.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qdebug.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qtextstream.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qlocale.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qset.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcontiguouscache.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurl.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qurlquery.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfile.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfiledevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qvector2d.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtouchdevice.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpaintengine.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpainter.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qtextoption.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qpen.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qglcolormap.h \
C:/Qt/Static591/5.9.1_Static/include/QtOpenGL/qtopenglglobal.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/QSurfaceFormat \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qsurfaceformat.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/QApplication \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qcoreapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qeventloop.h \
C:/Qt/Static591/5.9.1_Static/include/QtWidgets/qdesktopwidget.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qguiapplication.h \
C:/Qt/Static591/5.9.1_Static/include/QtGui/qinputmethod.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/QThread \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthread.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrun.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentcompilertest.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrent_global.h \
C:/Qt/Static591/5.9.1_Static/include/QtConcurrent/qtconcurrentrunbase.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfuture.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qfutureinterface.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qrunnable.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qexception.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qresultstore.h \
C:/Qt/Static591/5.9.1_Static/include/QtCore/qthreadpool.h \