forked from adangert/JoustMania
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_output.txt
1962 lines (1937 loc) · 161 KB
/
build_output.txt
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
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\scripts\visualc>build_msvc.bat 2017
The system cannot find the path specified.
Applying libusb dynamic CRT patch...
C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/scripts/visualc/../..//scripts/visualc/libusb_dynamic_crt.patch:10: trailing whitespace.
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/scripts/visualc/../..//scripts/visualc/libusb_dynamic_crt.patch:19: trailing whitespace.
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/scripts/visualc/../..//scripts/visualc/libusb_dynamic_crt.patch:32: trailing whitespace.
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/scripts/visualc/../..//scripts/visualc/libusb_dynamic_crt.patch:41: trailing whitespace.
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
warning: 4 lines add whitespace errors.
Building libusb
Microsoft (R) Build Engine version 15.3.409.57025 for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.
core.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
descriptor.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
hotplug.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
io.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
poll_windows.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
strerror.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
sync.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
threads_windows.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
windows_nt_common.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
windows_winusb.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
Generating Code...
libusb_static_2017.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\..\x64\Debug\lib\libusb-1.0.lib
Microsoft (R) Build Engine version 15.3.409.57025 for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.
core.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
descriptor.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
hotplug.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
io.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
poll_windows.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
strerror.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
sync.c
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
c:\users\aaron\documents\github\joustmania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
threads_windows.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
windows_nt_common.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
windows_winusb.c
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(426): warning C4324: 'libusb_device': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\libusb\libusbi.h(438): warning C4324: 'libusb_device_handle': structure was padded due to alignment specifier [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\libusb_static_2017.vcxproj]
libusb_static_2017.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\libusb-1.0\msvc\..\x64\Release\lib\libusb-1.0.lib
Cloning into 'opencv'...
remote: Counting objects: 5531, done.
remote: Compressing objects: 100% (4854/4854), done.
remote: Total 5531 (delta 784), reused 3319 (delta 443), pack-reused 0
Receiving objects: 100% (5531/5531), 70.19 MiB | 3.96 MiB/s, done.
Resolving deltas: 100% (784/784), done.
Note: checking out '92387b1ef8fad15196dd5f7fb4931444a68bc93a'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b <new-branch-name>
Checking out files: 100% (4651/4651), done.
Generating OpenCV solution
-- The CXX compiler identification is MSVC 19.11.25507.1
-- The C compiler identification is MSVC 19.11.25507.1
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.11.25503/bin/HostX86/x64/cl.exe
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.11.25503/bin/HostX86/x64/cl.exe -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.11.25503/bin/HostX86/x64/cl.exe
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.11.25503/bin/HostX86/x64/cl.exe -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Can't detect runtime and/or arch
-- Performing Test HAVE_CXX_FSIGNED_CHAR
-- Performing Test HAVE_CXX_FSIGNED_CHAR - Failed
-- Performing Test HAVE_C_FSIGNED_CHAR
-- Performing Test HAVE_C_FSIGNED_CHAR - Failed
-- Check if the system is big endian
-- Searching 16 bit integer
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Looking for fseeko
-- Looking for fseeko - not found
-- Looking for unistd.h
-- Looking for unistd.h - not found
-- Check size of off64_t
-- Check size of off64_t - failed
-- ICV: Downloading ippicv_windows_20151201.zip...
-- ICV: Unpacking ippicv_windows_20151201.zip to C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/ippicv/unpack...
-- ICV: Package successfully downloaded
-- found IPP (ICV version): 9.0.1 [9.0.1]
-- at: C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/ippicv/unpack/ippicv_win
-- Found PythonInterp: C:/Python27amd64/python.exe (found suitable version "2.7.13", minimum required is "2.7")
-- Found PythonLibs: C:/Python27amd64/libs/python27.lib (found suitable exact version "2.7.13")
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named numpy.distutils
-- Found PythonInterp: C:/Python36/python.exe (found suitable version "3.6.2", minimum required is "3.4")
-- Found PythonLibs: optimized;C:/Python36/libs/python36.lib;debug;C:/Python36/libs/python36_d.lib (found suitable exact version "3.6.2")
-- Could NOT find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH)
-- Could NOT find Matlab (missing: MATLAB_MEX_SCRIPT MATLAB_INCLUDE_DIRS MATLAB_ROOT_DIR MATLAB_LIBRARIES MATLAB_LIBRARY_DIRS MATLAB_MEXEXT MATLAB_ARCH MATLAB_BIN)
-- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file
-- Module opencv_shape disabled because opencv_video dependency can't be resolved!
-- Module opencv_stitching disabled because opencv_objdetect dependency can't be resolved!
-- Module opencv_superres disabled because opencv_video dependency can't be resolved!
-- Module opencv_videostab disabled because opencv_video dependency can't be resolved!
--
-- General configuration for OpenCV 3.1.0 =====================================
-- Version control: 3.1.0
--
-- Platform:
-- Host: Windows 10.0.14393 AMD64
-- CMake: 3.8.2
-- CMake generator: Visual Studio 15 2017 Win64
-- CMake build tool: C:\Program Files (x86)\Microsoft Visual Studio\2017\Community/MSBuild/15.0/Bin/MSBuild.exe
-- MSVC: 1911
--
-- C/C++:
-- Built as dynamic libs?: NO
-- C++ Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.11.25503/bin/HostX86/x64/cl.exe (ver 19.11.25507.1)
-- C++ flags (Release): /DWIN32 /D_WINDOWS /W4 /GR /EHa /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /wd4251 /wd4324 /wd4275 /wd4589 /MP8 /MD /O2 /Ob2 /DNDEBUG /Zi
-- C++ flags (Debug): /DWIN32 /D_WINDOWS /W4 /GR /EHa /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /wd4251 /wd4324 /wd4275 /wd4589 /MP8 /MDd /Zi /Ob0 /Od /RTC1
-- C Compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.11.25503/bin/HostX86/x64/cl.exe
-- C flags (Release): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /MP8 /MD /O2 /Ob2 /DNDEBUG /Zi
-- C flags (Debug): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /MP8 /MDd /Zi /Ob0 /Od /RTC1
-- Linker flags (Release): /machine:x64 /INCREMENTAL:NO /debug
-- Linker flags (Debug): /machine:x64 /debug /INCREMENTAL
-- Precompiled headers: YES
-- Extra dependencies: comctl32 gdi32 ole32 setupapi ws2_32 vfw32
-- 3rdparty dependencies: zlib libjpeg libwebp libpng ippicv
--
-- OpenCV modules:
-- To be built: core flann imgproc ml imgcodecs videoio highgui features2d calib3d python3
-- Disabled: objdetect photo video world
-- Disabled by dependency: shape stitching superres videostab
-- Unavailable: cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev java python2 ts viz
--
-- Windows RT support: NO
--
-- GUI:
-- QT: NO
-- Win32 UI: YES
-- OpenGL support: NO
-- VTK support: NO
--
-- Media I/O:
-- ZLib: build (ver 1.2.8)
-- JPEG: build (ver 90)
-- WEBP: build (ver 0.3.1)
-- PNG: build (ver 1.6.19)
-- TIFF: NO
-- JPEG 2000: NO
-- OpenEXR: NO
-- GDAL: NO
--
-- Video I/O:
-- Video for Windows: YES
-- DC1394 1.x: NO
-- DC1394 2.x: NO
-- FFMPEG: NO
-- codec: NO
-- format: NO
-- util: NO
-- swscale: NO
-- resample: NO
-- gentoo-style: NO
-- GStreamer: NO
-- OpenNI: NO
-- OpenNI PrimeSensor Modules: NO
-- OpenNI2: NO
-- PvAPI: NO
-- GigEVisionSDK: NO
-- DirectShow: YES
-- Media Foundation: NO
-- XIMEA: NO
-- Intel PerC: NO
--
-- Parallel framework: Concurrency
--
-- Other third-party libraries:
-- Use IPP: 9.0.1 [9.0.1]
-- at: C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/ippicv/unpack/ippicv_win
-- Use IPP Async: NO
-- Use Eigen: NO
-- Use Cuda: NO
-- Use OpenCL: YES
-- Use custom HAL: NO
--
-- OpenCL:
-- Version: dynamic
-- Include path: C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/include/opencl/1.2
-- Use AMDFFT: NO
-- Use AMDBLAS: NO
--
-- Python 2:
-- Interpreter: C:/Python27amd64/python.exe (ver 2.7.13)
--
-- Python 3:
-- Interpreter: C:/Python36/python.exe (ver 3.6.2)
-- Libraries: optimized C:/Python36/libs/python36.lib debug C:/Python36/libs/python36_d.lib (ver 3.6.2)
-- numpy: C:/Python36/lib/site-packages/numpy/core/include (ver 1.13.1)
-- packages path: C:/Python36/Lib/site-packages
--
-- Python (for build): C:/Python27amd64/python.exe
--
-- Java:
-- ant: NO
-- JNI: NO
-- Java wrappers: NO
-- Java tests: NO
--
-- Matlab: Matlab not found or implicitly disabled
--
-- Tests and samples:
-- Tests: NO
-- Performance tests: NO
-- C/C++ Examples: NO
--
-- Install path: C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/install
--
-- cvconfig.h is in: C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build
-- -----------------------------------------------------------------
--
-- Configuring done
-- Generating done
-- Build files have been written to: C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build
Building OpenCV
Microsoft (R) Build Engine version 15.3.409.57025 for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.
Checking Build System
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/zlib/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libjpeg/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libwebp/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libpng/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/include/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/calib3d/.calib3d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/core/.core/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaarithm/.cudaarithm/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudabgsegm/.cudabgsegm/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudacodec/.cudacodec/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudafeatures2d/.cudafeatures2d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudafilters/.cudafilters/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaimgproc/.cudaimgproc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudalegacy/.cudalegacy/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaobjdetect/.cudaobjdetect/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaoptflow/.cudaoptflow/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudastereo/.cudastereo/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudawarping/.cudawarping/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudev/.cudev/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/features2d/.features2d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/flann/.flann/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/highgui/.highgui/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgcodecs/.imgcodecs/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgproc/.imgproc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/java/.java/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/ml/.ml/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/objdetect/.objdetect/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/photo/.photo/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python/.python/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python/.python/python2/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python/.python/python3/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/shape/.shape/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/stitching/.stitching/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/superres/.superres/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/ts/.ts/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/video/.video/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/videoio/.videoio/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/videostab/.videostab/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/viz/.viz/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/world/.world/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/core/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/flann/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgproc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/ml/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgcodecs/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/videoio/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/highgui/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/features2d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/calib3d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python3/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/doc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/data/CMakeFiles/generate.stamp is up-to-date.
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/zlib/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/libjpeg/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/libwebp/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libjpeg/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libwebp/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/zlib/CMakeFiles/generate.stamp is up-to-date.
adler32.c
compress.c
jaricom.c
crc32.c
alpha.c
deflate.c
jcapimin.c
gzclose.c
jcapistd.c
gzlib.c
jcarith.c
jccoefct.c
gzread.c
gzwrite.c
jccolor.c
jcdctmgr.c
jchuff.c
inflate.c
infback.c
inftrees.c
jcinit.c
inffast.c
trees.c
uncompr.c
zutil.c
jcmainct.c
jcmarker.c
jcmaster.c
jcomapi.c
jcparam.c
jcprepct.c
jcsample.c
jctrans.c
jdapimin.c
jdapistd.c
jdarith.c
jdatadst.c
buffer.c
idec.c
io.c
vp8.c
webp.c
cpu.c
dec.c
dec_neon.c
jdatasrc.c
jdcoefct.c
dec_sse2.c
enc.c
jdcolor.c
zlib.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\3rdparty\lib\Debug\zlibd.lib
jddctmgr.c
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/libpng/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/core/CMakeLists.txt
jdhuff.c
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libpng/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/core/CMakeFiles/generate.stamp is up-to-date.
Generating opencl_kernels_core.cpp, opencl_kernels_core.hpp
jdinput.c
jdmainct.c
png.c
pngerror.c
pngget.c
pngmem.c
pngpread.c
pngread.c
pngrio.c
pngrtran.c
opencv_core_pch.cpp
jdmarker.c
jdmaster.c
jdmerge.c
jdpostct.c
enc_neon.c
enc_sse2.c
lossless.c
upsampling.c
jdsample.c
jdtrans.c
jerror.c
jfdctflt.c
upsampling_neon.c
upsampling_sse2.c
jfdctfst.c
jfdctint.c
yuv.c
analysis.c
backward_references.c
config.c
cost.c
jidctflt.c
filter.c
jidctfst.c
histogram.c
jidctint.c
jmemansi.c
iterator.c
jmemmgr.c
picture.c
pngrutil.c
jquant1.c
pngset.c
jquant2.c
jutils.c
pngtrans.c
pngwio.c
pngwrite.c
algorithm.cpp
alloc.cpp
arithm.cpp
array.cpp
command_line_parser.cpp
conjugate_gradient.cpp
convert.cpp
copy.cpp
pngwtran.c
cuda_gpu_mat.cpp
cuda_host_mem.cpp
syntax.c
pngwutil.c
cuda_info.cpp
token.c
webpenc.c
cuda_stream.cpp
muxedit.c
datastructs.cpp
directx.cpp
downhill_simplex.cpp
muxinternal.c
libjpeg.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\3rdparty\lib\Debug\libjpegd.lib
muxread.c
dxt.cpp
bit_reader.c
bit_writer.c
gl_core_3_1.cpp
color_cache.c
filters.c
huffman.c
glob.cpp
huffman_encode.c
quant_levels.c
quant_levels_dec.c
rescaler.c
thread.c
utils.c
kmeans.cpp
lapack.cpp
lda.cpp
libpng.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\3rdparty\lib\Debug\libpngd.lib
lpsolver.cpp
mathfuncs.cpp
mathfuncs_core.cpp
matmul.cpp
matop.cpp
matrix.cpp
matrix_decomp.cpp
merge.cpp
frame.c
ocl.cpp
opencl_clamdblas.cpp
opencl_clamdfft.cpp
opencl_core.cpp
opengl.cpp
out.cpp
parallel.cpp
parallel_pthreads.cpp
pca.cpp
persistence.cpp
rand.cpp
split.cpp
stat.cpp
layer.c
stl.cpp
system.cpp
tables.cpp
types.cpp
umatrix.cpp
va_intel.cpp
quant.c
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\algorithm(911): warning C4244: '=': conversion from 'int' to 'char', possible loss of data (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\core\src\oc
l.cpp) [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\core\opencv_core.vcxproj]
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\algorithm(924): note: see reference to function template instantiation '_OutIt std::_Transform_no_deprecate<_InIt,_OutIt,int(__cdecl *)(int)>(_InIt,_InIt,_OutIt,_Fn &)' being compiled
with
[
_OutIt=std::_String_iterator<std::_String_val<std::_Simple_types<char>>>,
_InIt=std::_String_iterator<std::_String_val<std::_Simple_types<char>>>,
_Fn=int (__cdecl *)(int)
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\core\src\ocl.cpp)
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\core\src\ocl.cpp(2332): note: see reference to function template instantiation '_OutIt std::transform<std::_String_iterator<std::_String_val<std::_Simple_types<_Ty>>>,std::_String_iterator<std::_String_val<std::_Simple_t
ypes<_Ty>>>,int(__cdecl *)(int)>(_InIt,_InIt,_OutIt,_Fn)' being compiled
with
[
_OutIt=std::_String_iterator<std::_String_val<std::_Simple_types<char>>>,
_Ty=char,
_InIt=std::_String_iterator<std::_String_val<std::_Simple_types<char>>>,
_Fn=int (__cdecl *)(int)
]
opencl_kernels_core.cpp
tree.c
vp8l.c
parallel_pthreads.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\core\opencv_core.vcxproj]
opencl_clamdfft.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\core\opencv_core.vcxproj]
opencl_clamdblas.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\core\opencv_core.vcxproj]
alpha.c
opencv_core.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_core310d.lib
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/ml/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/imgproc/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/flann/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgproc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/flann/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/ml/CMakeFiles/generate.stamp is up-to-date.
Generating opencl_kernels_imgproc.cpp, opencl_kernels_imgproc.hpp
opencv_flann_pch.cpp
opencv_ml_pch.cpp
opencv_imgproc_pch.cpp
frame.c
layer.c
ann_mlp.cpp
boost.cpp
data.cpp
em.cpp
gbt.cpp
inner_functions.cpp
kdtree.cpp
knearest.cpp
lr.cpp
nbayes.cpp
quant.c
accum.cpp
approx.cpp
blend.cpp
canny.cpp
clahe.cpp
color.cpp
colormap.cpp
connectedcomponents.cpp
contours.cpp
flann.cpp
miniflann.cpp
convhull.cpp
rtrees.cpp
svm.cpp
testset.cpp
tree.cpp
corner.cpp
cornersubpix.cpp
demosaicing.cpp
tree.c
deriv.cpp
distransform.cpp
drawing.cpp
emd.cpp
featureselect.cpp
filter.cpp
floodfill.cpp
gabor.cpp
generalized_hough.cpp
geometry.cpp
grabcut.cpp
vp8l.c
hershey_fonts.cpp
histogram.cpp
hough.cpp
imgwarp.cpp
intersection.cpp
linefit.cpp
libwebp.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\3rdparty\lib\Debug\libwebpd.lib
lsd.cpp
main.cpp
gbt.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\ml\opencv_ml.vcxproj]
matchcontours.cpp
min_enclosing_triangle.cpp
moments.cpp
opencv_ml.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_ml310d.lib
morph.cpp
phasecorr.cpp
pyramids.cpp
rotcalipers.cpp
samplers.cpp
segmentation.cpp
shapedescr.cpp
smooth.cpp
spatialgradient.cpp
subdivision2d.cpp
sumpixels.cpp
tables.cpp
templmatch.cpp
thresh.cpp
undistort.cpp
utils.cpp
opencl_kernels_imgproc.cpp
main.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\imgproc\opencv_imgproc.vcxproj]
opencv_imgproc.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_imgproc310d.lib
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/imgcodecs/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgcodecs/CMakeFiles/generate.stamp is up-to-date.
opencv_imgcodecs_pch.cpp
opencv_flann.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_flann310d.lib
loadsave.cpp
utils.cpp
grfmt_base.cpp
grfmt_bmp.cpp
grfmt_exr.cpp
grfmt_gdal.cpp
grfmt_hdr.cpp
grfmt_jpeg.cpp
grfmt_jpeg2000.cpp
grfmt_png.cpp
grfmt_pxm.cpp
grfmt_sunras.cpp
grfmt_tiff.cpp
grfmt_webp.cpp
bitstrm.cpp
rgbe.cpp
jpeg_exif.cpp
grfmt_jpeg2000.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\imgcodecs\opencv_imgcodecs.vcxp
roj]
grfmt_gdal.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\imgcodecs\opencv_imgcodecs.vcxproj]
grfmt_exr.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\imgcodecs\opencv_imgcodecs.vcxproj]
opencv_imgcodecs.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_imgcodecs310d.lib
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/videoio/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/videoio/CMakeFiles/generate.stamp is up-to-date.
opencv_videoio_pch.cpp
cap.cpp
cap_images.cpp
cap_mjpeg_encoder.cpp
cap_mjpeg_decoder.cpp
cap_cmu.cpp
cap_dshow.cpp
cap_vfw.cpp
cap_cmu.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\videoio\opencv_videoio.vcxproj]
opencv_videoio.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_videoio310d.lib
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/highgui/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/highgui/CMakeFiles/generate.stamp is up-to-date.
opencv_highgui_pch.cpp
window.cpp
window_w32.cpp
opencv_highgui.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_highgui310d.lib
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/features2d/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/features2d/CMakeFiles/generate.stamp is up-to-date.
Generating opencl_kernels_features2d.cpp, opencl_kernels_features2d.hpp
opencv_features2d_pch.cpp
agast.cpp
agast_score.cpp
akaze.cpp
bagofwords.cpp
blobdetector.cpp
brisk.cpp
draw.cpp
dynamic.cpp
evaluation.cpp
fast.cpp
fast_score.cpp
feature2d.cpp
gftt.cpp
kaze.cpp
AKAZEFeatures.cpp
KAZEFeatures.cpp
fed.cpp
nldiffusion_functions.cpp
keypoint.cpp
main.cpp
matchers.cpp
mser.cpp
orb.cpp
opencl_kernels_features2d.cpp
main.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\features2d\opencv_features2d.vcxproj]
dynamic.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\features2d\opencv_features2d.vcxproj]
opencv_features2d.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_features2d310d.lib
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/calib3d/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/calib3d/CMakeFiles/generate.stamp is up-to-date.
Generating opencl_kernels_calib3d.cpp, opencl_kernels_calib3d.hpp
opencv_calib3d_pch.cpp
calibinit.cpp
calibration.cpp
checkchessboard.cpp
circlesgrid.cpp
compat_ptsetreg.cpp
compat_stereo.cpp
dls.cpp
epnp.cpp
fisheye.cpp
five-point.cpp
fundam.cpp
homography_decomp.cpp
levmarq.cpp
main.cpp
p3p.cpp
polynom_solver.cpp
posit.cpp
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\xmemory0(856): warning C4244: 'initializing': conversion from 'int' to 'unsigned char', possible loss of data (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\
modules\calib3d\src\fisheye.cpp) [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\calib3d\opencv_calib3d.vcxproj]
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\xmemory(92): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,int&>(_Alloc &,_Objty *const ,int &)' being compiled
with
[
_Alloc=std::allocator<uchar>,
_Ty=unsigned char,
_Objty=unsigned char
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\xmemory(92): note: see reference to function template instantiation 'void std::_Default_allocator_traits<_Alloc>::construct<_Ty,int&>(_Alloc &,_Objty *const ,int &)' being compiled
with
[
_Alloc=std::allocator<uchar>,
_Ty=unsigned char,
_Objty=unsigned char
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\xmemory(125): note: see reference to function template instantiation '_FwdIt std::_Uninitialized_copy_al_unchecked<_Iter,unsigned char*,_Alloc>(_InIt,_InIt,_FwdIt,_Alloc &,std::_General_ptr_iterator_t
ag,std::_Any_tag)' being compiled
with
[
_FwdIt=unsigned char *,
_Iter=int *,
_Alloc=std::allocator<uchar>,
_InIt=int *
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\vector(1914): note: see reference to function template instantiation '_FwdIt *std::_Uninitialized_copy<_Iter,unsigned char*,std::allocator<_Ty>>(_InIt,_InIt,_FwdIt,_Alloc &)' being compiled
with
[
_FwdIt=unsigned char *,
_Iter=int *,
_Ty=uchar,
_InIt=int *,
_Alloc=std::allocator<uchar>
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\vector(1208): note: see reference to function template instantiation 'unsigned char *std::vector<uchar,std::allocator<_Ty>>::_Ucopy<_Iter>(_Iter,_Iter,unsigned char *)' being compiled
with
[
_Ty=uchar,
_Iter=int *
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\vector(1208): note: see reference to function template instantiation 'unsigned char *std::vector<uchar,std::allocator<_Ty>>::_Ucopy<_Iter>(_Iter,_Iter,unsigned char *)' being compiled
with
[
_Ty=uchar,
_Iter=int *
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\vector(1312): note: see reference to function template instantiation 'void std::vector<uchar,std::allocator<_Ty>>::_Insert_range<int*>(std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<_
Ty>>>,_Iter,_Iter,std::forward_iterator_tag)' being compiled
with
[
_Ty=uchar,
_Iter=int *
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.11.25503\include\vector(1312): note: see reference to function template instantiation 'void std::vector<uchar,std::allocator<_Ty>>::_Insert_range<int*>(std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<_
Ty>>>,_Iter,_Iter,std::forward_iterator_tag)' being compiled
with
[
_Ty=uchar,
_Iter=int *
] (compiling source file C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp)
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp(906): note: see reference to function template instantiation 'std::_Vector_iterator<std::_Vector_val<std::_Simple_types<_Ty>>> std::vector<_Ty,std::allocator<_Ty>>::insert<std::_Vector_iterator<st
d::_Vector_val<std::_Simple_types<int>>>,void>(std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<_Ty>>>,_Iter,_Iter)' being compiled
with
[
_Ty=uchar,
_Iter=std::_Vector_iterator<std::_Vector_val<std::_Simple_types<int>>>
]
C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\modules\calib3d\src\fisheye.cpp(906): note: see reference to function template instantiation 'std::_Vector_iterator<std::_Vector_val<std::_Simple_types<_Ty>>> std::vector<_Ty,std::allocator<_Ty>>::insert<std::_Vector_iterator<st
d::_Vector_val<std::_Simple_types<int>>>,void>(std::_Vector_const_iterator<std::_Vector_val<std::_Simple_types<_Ty>>>,_Iter,_Iter)' being compiled
with
[
_Ty=uchar,
_Iter=std::_Vector_iterator<std::_Vector_val<std::_Simple_types<int>>>
]
ptsetreg.cpp
quadsubpix.cpp
rho.cpp
solvepnp.cpp
stereobm.cpp
stereosgbm.cpp
triangulate.cpp
upnp.cpp
opencl_kernels_calib3d.cpp
main.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library [C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\modules\calib3d\opencv_calib3d.vcxproj]
opencv_calib3d.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\Debug\opencv_calib3d310d.lib
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/python/python3/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python3/CMakeFiles/generate.stamp is up-to-date.
Generating pyopencv_generated_include.h, pyopencv_generated_funcs.h, pyopencv_generated_types.h, pyopencv_generated_type_reg.h, pyopencv_generated_ns_reg.h
C:\Python36\lib\re.py:212: FutureWarning: split() requires a non-empty pattern match.
return _compile(pattern, flags).split(string, maxsplit)
cv2.cpp
Creating library C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/lib/Debug/cv2.lib and object C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/lib/Debug/cv2.exp
opencv_python3.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\lib\python3\Debug\cv2.cp36-win_amd64.pyd
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/CMakeFiles/generate.stamp is up-to-date.
Microsoft (R) Build Engine version 15.3.409.57025 for .NET Framework
Copyright (C) Microsoft Corporation. All rights reserved.
Checking Build System
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/zlib/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libjpeg/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libwebp/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libpng/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/include/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/calib3d/.calib3d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/core/.core/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaarithm/.cudaarithm/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudabgsegm/.cudabgsegm/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudacodec/.cudacodec/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudafeatures2d/.cudafeatures2d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudafilters/.cudafilters/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaimgproc/.cudaimgproc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudalegacy/.cudalegacy/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaobjdetect/.cudaobjdetect/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudaoptflow/.cudaoptflow/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudastereo/.cudastereo/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudawarping/.cudawarping/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/cudev/.cudev/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/features2d/.features2d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/flann/.flann/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/highgui/.highgui/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgcodecs/.imgcodecs/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgproc/.imgproc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/java/.java/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/ml/.ml/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/objdetect/.objdetect/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/photo/.photo/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python/.python/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python/.python/python2/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python/.python/python3/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/shape/.shape/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/stitching/.stitching/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/superres/.superres/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/ts/.ts/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/video/.video/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/videoio/.videoio/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/videostab/.videostab/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/viz/.viz/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/world/.world/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/core/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/flann/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgproc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/ml/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/imgcodecs/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/videoio/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/highgui/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/features2d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/calib3d/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/python3/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/doc/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/data/CMakeFiles/generate.stamp is up-to-date.
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/libwebp/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/libjpeg/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/zlib/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libwebp/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libjpeg/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/zlib/CMakeFiles/generate.stamp is up-to-date.
adler32.c
compress.c
crc32.c
deflate.c
gzclose.c
alpha.c
gzlib.c
gzread.c
gzwrite.c
jaricom.c
jcapimin.c
jcapistd.c
jcarith.c
jccoefct.c
jccolor.c
jcdctmgr.c
jchuff.c
inflate.c
infback.c
inftrees.c
jcinit.c
inffast.c
trees.c
uncompr.c
zutil.c
jcmainct.c
jcmarker.c
jcmaster.c
jcomapi.c
jcparam.c
buffer.c
idec.c
io.c
vp8.c
webp.c
cpu.c
dec.c
dec_neon.c
jcprepct.c
jcsample.c
dec_sse2.c
enc.c
jctrans.c
jdapimin.c
jdapistd.c
jdarith.c
zlib.vcxproj -> C:\Users\Aaron\Documents\GitHub\JoustMania\psmoveapi\external\opencv\build\3rdparty\lib\Release\zlib.lib
jdatadst.c
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/modules/core/CMakeLists.txt
Building Custom Rule C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/3rdparty/libpng/CMakeLists.txt
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/core/CMakeFiles/generate.stamp is up-to-date.
CMake does not need to re-run because C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/3rdparty/libpng/CMakeFiles/generate.stamp is up-to-date.
Generating opencl_kernels_core.cpp, opencl_kernels_core.hpp
jdatasrc.c
-- C:/Users/Aaron/Documents/GitHub/JoustMania/psmoveapi/external/opencv/build/modules/core/opencl_kernels_core.hpp contains same content
png.c
pngerror.c
pngget.c
pngmem.c
pngpread.c
pngread.c
pngrio.c
pngrtran.c
opencv_core_pch.cpp
jdcoefct.c
jdcolor.c
jddctmgr.c
jdhuff.c
enc_neon.c
enc_sse2.c
jdinput.c
jdmainct.c
jdmarker.c
lossless.c
jdmaster.c
upsampling.c
upsampling_neon.c
upsampling_sse2.c
yuv.c
analysis.c
jdmerge.c
jdpostct.c
backward_references.c
config.c
cost.c
filter.c
histogram.c
iterator.c
jdsample.c
jdtrans.c
jerror.c
jfdctflt.c
picture.c
jfdctfst.c
jfdctint.c
algorithm.cpp
alloc.cpp
arithm.cpp
array.cpp
command_line_parser.cpp
conjugate_gradient.cpp
convert.cpp
pngrutil.c
copy.cpp
pngset.c
cuda_gpu_mat.cpp
pngtrans.c
pngwio.c
pngwrite.c