-
Notifications
You must be signed in to change notification settings - Fork 0
/
compile_commands.json
1812 lines (1812 loc) · 244 KB
/
compile_commands.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/gfx/vbo.cpp.o -c /home/dan/CLionProjects/fractals/src/gfx/vbo.cpp",
"file": "/home/dan/CLionProjects/fractals/src/gfx/vbo.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/gfx/vertexarray.cpp.o -c /home/dan/CLionProjects/fractals/src/gfx/vertexarray.cpp",
"file": "/home/dan/CLionProjects/fractals/src/gfx/vertexarray.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/gfx/shader.cpp.o -c /home/dan/CLionProjects/fractals/src/gfx/shader.cpp",
"file": "/home/dan/CLionProjects/fractals/src/gfx/shader.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/gfx/shaderprogram.cpp.o -c /home/dan/CLionProjects/fractals/src/gfx/shaderprogram.cpp",
"file": "/home/dan/CLionProjects/fractals/src/gfx/shaderprogram.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/main.cpp.o -c /home/dan/CLionProjects/fractals/src/main.cpp",
"file": "/home/dan/CLionProjects/fractals/src/main.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/window.cpp.o -c /home/dan/CLionProjects/fractals/src/window.cpp",
"file": "/home/dan/CLionProjects/fractals/src/window.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/gfx/ebo.cpp.o -c /home/dan/CLionProjects/fractals/src/gfx/ebo.cpp",
"file": "/home/dan/CLionProjects/fractals/src/gfx/ebo.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/util/imgui.cpp.o -c /home/dan/CLionProjects/fractals/src/util/imgui.cpp",
"file": "/home/dan/CLionProjects/fractals/src/util/imgui.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/util/imgui_draw.cpp.o -c /home/dan/CLionProjects/fractals/src/util/imgui_draw.cpp",
"file": "/home/dan/CLionProjects/fractals/src/util/imgui_draw.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/util/imgui_tables.cpp.o -c /home/dan/CLionProjects/fractals/src/util/imgui_tables.cpp",
"file": "/home/dan/CLionProjects/fractals/src/util/imgui_tables.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/util/imgui_widgets.cpp.o -c /home/dan/CLionProjects/fractals/src/util/imgui_widgets.cpp",
"file": "/home/dan/CLionProjects/fractals/src/util/imgui_widgets.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/util/backends/imgui_impl_opengl3.cpp.o -c /home/dan/CLionProjects/fractals/src/util/backends/imgui_impl_opengl3.cpp",
"file": "/home/dan/CLionProjects/fractals/src/util/backends/imgui_impl_opengl3.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/util/backends/imgui_impl_sdl.cpp.o -c /home/dan/CLionProjects/fractals/src/util/backends/imgui_impl_sdl.cpp",
"file": "/home/dan/CLionProjects/fractals/src/util/backends/imgui_impl_sdl.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../src -I/home/dan/dev/boost_1_77_0 -I../stx::include -I../spdlog -I../SDL2::Video -I../dep/STX/include -I../dep/spdlog/include -I../dep/SDL/include -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles/fractals.dir/src/util/backends/imgui_impl_sdlrenderer.cpp.o -c /home/dan/CLionProjects/fractals/src/util/backends/imgui_impl_sdlrenderer.cpp",
"file": "/home/dan/CLionProjects/fractals/src/util/backends/imgui_impl_sdlrenderer.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -I../dep/STX/include -O3 -DNDEBUG -Wpedantic -Wall -Wextra -std=gnu++20 -o dep/STX/CMakeFiles/stx.dir/src/panic/hook.cc.o -c /home/dan/CLionProjects/fractals/dep/STX/src/panic/hook.cc",
"file": "/home/dan/CLionProjects/fractals/dep/STX/src/panic/hook.cc"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -I../dep/STX/include -O3 -DNDEBUG -Wpedantic -Wall -Wextra -std=gnu++20 -o dep/STX/CMakeFiles/stx.dir/src/panic.cc.o -c /home/dan/CLionProjects/fractals/dep/STX/src/panic.cc",
"file": "/home/dan/CLionProjects/fractals/dep/STX/src/panic.cc"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../dep/spdlog/include -O3 -DNDEBUG -std=c++20 -o dep/spdlog/CMakeFiles/spdlog.dir/src/spdlog.cpp.o -c /home/dan/CLionProjects/fractals/dep/spdlog/src/spdlog.cpp",
"file": "/home/dan/CLionProjects/fractals/dep/spdlog/src/spdlog.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../dep/spdlog/include -O3 -DNDEBUG -std=c++20 -o dep/spdlog/CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o -c /home/dan/CLionProjects/fractals/dep/spdlog/src/stdout_sinks.cpp",
"file": "/home/dan/CLionProjects/fractals/dep/spdlog/src/stdout_sinks.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../dep/spdlog/include -O3 -DNDEBUG -std=c++20 -o dep/spdlog/CMakeFiles/spdlog.dir/src/color_sinks.cpp.o -c /home/dan/CLionProjects/fractals/dep/spdlog/src/color_sinks.cpp",
"file": "/home/dan/CLionProjects/fractals/dep/spdlog/src/color_sinks.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../dep/spdlog/include -O3 -DNDEBUG -std=c++20 -o dep/spdlog/CMakeFiles/spdlog.dir/src/file_sinks.cpp.o -c /home/dan/CLionProjects/fractals/dep/spdlog/src/file_sinks.cpp",
"file": "/home/dan/CLionProjects/fractals/dep/spdlog/src/file_sinks.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../dep/spdlog/include -O3 -DNDEBUG -std=c++20 -o dep/spdlog/CMakeFiles/spdlog.dir/src/async.cpp.o -c /home/dan/CLionProjects/fractals/dep/spdlog/src/async.cpp",
"file": "/home/dan/CLionProjects/fractals/dep/spdlog/src/async.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../dep/spdlog/include -O3 -DNDEBUG -std=c++20 -o dep/spdlog/CMakeFiles/spdlog.dir/src/cfg.cpp.o -c /home/dan/CLionProjects/fractals/dep/spdlog/src/cfg.cpp",
"file": "/home/dan/CLionProjects/fractals/dep/spdlog/src/cfg.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/c++ -DSPDLOG_COMPILED_LIB -I../dep/spdlog/include -O3 -DNDEBUG -std=c++20 -o dep/spdlog/CMakeFiles/spdlog.dir/src/fmt.cpp.o -c /home/dan/CLionProjects/fractals/dep/spdlog/src/fmt.cpp",
"file": "/home/dan/CLionProjects/fractals/dep/spdlog/src/fmt.cpp"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/SDL.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/SDL_assert.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_assert.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_assert.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/SDL_dataqueue.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_dataqueue.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_dataqueue.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/SDL_error.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_error.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_error.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/SDL_hints.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_hints.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_hints.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/SDL_log.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_log.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_log.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/atomic/SDL_atomic.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_atomic.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_atomic.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/atomic/SDL_spinlock.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_spinlock.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_spinlock.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/SDL_audio.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audio.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audio.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/SDL_audiocvt.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audiocvt.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audiocvt.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/SDL_audiodev.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audiodev.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audiodev.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/SDL_audiotypecvt.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audiotypecvt.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_audiotypecvt.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/SDL_mixer.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_mixer.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_mixer.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/SDL_wave.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_wave.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/SDL_wave.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/cpuinfo/SDL_cpuinfo.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/cpuinfo/SDL_cpuinfo.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/cpuinfo/SDL_cpuinfo.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/dynapi/SDL_dynapi.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/dynapi/SDL_dynapi.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/dynapi/SDL_dynapi.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_clipboardevents.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_clipboardevents.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_clipboardevents.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_displayevents.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_displayevents.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_displayevents.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_dropevents.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_dropevents.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_dropevents.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_events.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_events.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_events.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_gesture.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_gesture.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_gesture.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_keyboard.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_keyboard.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_keyboard.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_mouse.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_mouse.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_mouse.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_quit.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_quit.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_quit.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_touch.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_touch.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_touch.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/SDL_windowevents.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_windowevents.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/SDL_windowevents.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/events/imKStoUCS.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/events/imKStoUCS.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/events/imKStoUCS.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/file/SDL_rwops.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/file/SDL_rwops.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/file/SDL_rwops.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/haptic/SDL_haptic.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/haptic/SDL_haptic.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/haptic/SDL_haptic.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/hidapi/SDL_hidapi.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/hidapi/SDL_hidapi.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/hidapi/SDL_hidapi.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_atan2.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_atan2.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_atan2.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_exp.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_exp.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_exp.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_fmod.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_fmod.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_fmod.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_log.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_log.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_log.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_log10.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_log10.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_log10.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_pow.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_pow.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_pow.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_rem_pio2.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_rem_pio2.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_rem_pio2.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/e_sqrt.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_sqrt.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/e_sqrt.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/k_cos.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_cos.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_cos.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/k_rem_pio2.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_rem_pio2.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_rem_pio2.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/k_sin.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_sin.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_sin.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/k_tan.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_tan.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/k_tan.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_atan.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_atan.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_atan.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_copysign.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_copysign.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_copysign.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_cos.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_cos.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_cos.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_fabs.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_fabs.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_fabs.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_floor.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_floor.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_floor.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_scalbn.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_scalbn.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_scalbn.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_sin.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_sin.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_sin.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/libm/s_tan.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_tan.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/libm/s_tan.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/locale/SDL_locale.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/locale/SDL_locale.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/locale/SDL_locale.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/misc/SDL_url.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/misc/SDL_url.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/misc/SDL_url.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/power/SDL_power.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/power/SDL_power.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/power/SDL_power.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/SDL_d3dmath.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/SDL_d3dmath.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/SDL_d3dmath.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/SDL_render.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/SDL_render.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/SDL_render.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/SDL_yuv_sw.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/SDL_yuv_sw.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/SDL_yuv_sw.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/direct3d/SDL_render_d3d.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d/SDL_render_d3d.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d/SDL_render_d3d.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/direct3d/SDL_shaders_d3d.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d/SDL_shaders_d3d.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d/SDL_shaders_d3d.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/direct3d11/SDL_render_d3d11.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d11/SDL_render_d3d11.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d11/SDL_render_d3d11.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/direct3d11/SDL_shaders_d3d11.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d11/SDL_shaders_d3d11.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/direct3d11/SDL_shaders_d3d11.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/opengl/SDL_render_gl.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/opengl/SDL_render_gl.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/opengl/SDL_render_gl.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/opengl/SDL_shaders_gl.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/opengl/SDL_shaders_gl.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/opengl/SDL_shaders_gl.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/opengles/SDL_render_gles.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/opengles/SDL_render_gles.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/opengles/SDL_render_gles.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/opengles2/SDL_render_gles2.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/opengles2/SDL_render_gles2.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/opengles2/SDL_render_gles2.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/opengles2/SDL_shaders_gles2.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/opengles2/SDL_shaders_gles2.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/opengles2/SDL_shaders_gles2.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/psp/SDL_render_psp.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/psp/SDL_render_psp.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/psp/SDL_render_psp.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_blendfillrect.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_blendfillrect.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_blendfillrect.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_blendline.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_blendline.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_blendline.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_blendpoint.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_blendpoint.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_blendpoint.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_drawline.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_drawline.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_drawline.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_drawpoint.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_drawpoint.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_drawpoint.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_render_sw.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_render_sw.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_render_sw.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_rotate.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_rotate.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_rotate.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/software/SDL_triangle.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_triangle.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/software/SDL_triangle.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/vitagxm/SDL_render_vita_gxm.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/vitagxm/SDL_render_vita_gxm.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/vitagxm/SDL_render_vita_gxm.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/vitagxm/SDL_render_vita_gxm_memory.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/vitagxm/SDL_render_vita_gxm_memory.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/vitagxm/SDL_render_vita_gxm_memory.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/render/vitagxm/SDL_render_vita_gxm_tools.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/render/vitagxm/SDL_render_vita_gxm_tools.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/render/vitagxm/SDL_render_vita_gxm_tools.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/sensor/SDL_sensor.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/sensor/SDL_sensor.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/sensor/SDL_sensor.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_crc32.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_crc32.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_crc32.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_getenv.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_getenv.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_getenv.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_iconv.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_iconv.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_iconv.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_malloc.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_malloc.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_malloc.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_qsort.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_qsort.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_qsort.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_stdlib.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_stdlib.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_stdlib.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_string.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_string.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_string.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/stdlib/SDL_strtokr.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_strtokr.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/stdlib/SDL_strtokr.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/thread/SDL_thread.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/thread/SDL_thread.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/thread/SDL_thread.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/timer/SDL_timer.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/timer/SDL_timer.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/timer/SDL_timer.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_RLEaccel.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_RLEaccel.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_RLEaccel.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit_0.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_0.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_0.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit_1.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_1.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_1.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit_A.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_A.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_A.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit_N.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_N.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_N.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit_auto.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_auto.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_auto.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit_copy.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_copy.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_copy.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_blit_slow.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_slow.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_blit_slow.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_bmp.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_bmp.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_bmp.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_clipboard.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_clipboard.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_clipboard.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_egl.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_egl.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_egl.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_fillrect.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_fillrect.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_fillrect.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_pixels.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_pixels.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_pixels.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_rect.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_rect.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_rect.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_shape.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_shape.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_shape.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_stretch.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_stretch.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_stretch.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_surface.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_surface.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_surface.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_video.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_video.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_video.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_vulkan_utils.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_vulkan_utils.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_vulkan_utils.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/SDL_yuv.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_yuv.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/SDL_yuv.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/yuv2rgb/yuv_rgb.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/yuv2rgb/yuv_rgb.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/yuv2rgb/yuv_rgb.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/SDL_gamecontroller.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/SDL_gamecontroller.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/SDL_gamecontroller.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/SDL_joystick.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/SDL_joystick.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/SDL_joystick.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/dummy/SDL_dummyaudio.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/dummy/SDL_dummyaudio.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/dummy/SDL_dummyaudio.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/disk/SDL_diskaudio.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/disk/SDL_diskaudio.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/disk/SDL_diskaudio.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/loadso/dlopen/SDL_sysloadso.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/loadso/dlopen/SDL_sysloadso.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/loadso/dlopen/SDL_sysloadso.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/virtual/SDL_virtualjoystick.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/virtual/SDL_virtualjoystick.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/virtual/SDL_virtualjoystick.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/dummy/SDL_nullevents.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/dummy/SDL_nullevents.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/dummy/SDL_nullevents.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/dummy/SDL_nullframebuffer.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/dummy/SDL_nullframebuffer.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/dummy/SDL_nullframebuffer.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/dummy/SDL_nullvideo.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/dummy/SDL_nullvideo.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/dummy/SDL_nullvideo.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/audio/dsp/SDL_dspaudio.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/audio/dsp/SDL_dspaudio.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/audio/dsp/SDL_dspaudio.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11clipboard.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11clipboard.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11clipboard.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11dyn.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11dyn.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11dyn.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11events.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11events.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11events.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11framebuffer.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11framebuffer.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11framebuffer.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11keyboard.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11keyboard.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11keyboard.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11messagebox.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11messagebox.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11messagebox.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11modes.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11modes.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11modes.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11mouse.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11mouse.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11mouse.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11opengl.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11opengl.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11opengl.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11opengles.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11opengles.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11opengles.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11shape.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11shape.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11shape.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11touch.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11touch.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11touch.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11video.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11video.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11video.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11vulkan.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11vulkan.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11vulkan.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11window.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11window.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11window.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11xfixes.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11xfixes.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11xfixes.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/SDL_x11xinput2.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11xinput2.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/SDL_x11xinput2.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/video/x11/edid-parse.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/edid-parse.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/video/x11/edid-parse.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/core/unix/SDL_poll.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/core/unix/SDL_poll.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/core/unix/SDL_poll.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/haptic/linux/SDL_syshaptic.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/haptic/linux/SDL_syshaptic.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/haptic/linux/SDL_syshaptic.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/core/linux/SDL_evdev.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_evdev.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_evdev.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/core/linux/SDL_evdev_kbd.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_evdev_kbd.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_evdev_kbd.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/core/linux/SDL_evdev_capabilities.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_evdev_capabilities.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_evdev_capabilities.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/core/linux/SDL_threadprio.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_threadprio.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/core/linux/SDL_threadprio.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_gamecube.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_gamecube.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_gamecube.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_luna.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_luna.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_luna.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_ps4.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_ps4.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_ps4.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_ps5.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_ps5.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_ps5.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_rumble.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_rumble.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_rumble.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_stadia.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_stadia.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_stadia.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_steam.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_steam.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_steam.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_switch.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_switch.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_switch.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_xbox360.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_xbox360.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_xbox360.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_xbox360w.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_xbox360w.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_xbox360w.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapi_xboxone.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_xboxone.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapi_xboxone.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/hidapi/SDL_hidapijoystick.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapijoystick.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/hidapi/SDL_hidapijoystick.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/linux/SDL_sysjoystick.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/linux/SDL_sysjoystick.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/linux/SDL_sysjoystick.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/joystick/steam/SDL_steamcontroller.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/joystick/steam/SDL_steamcontroller.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/joystick/steam/SDL_steamcontroller.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/thread/pthread/SDL_systhread.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_systhread.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_systhread.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/thread/pthread/SDL_sysmutex.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_sysmutex.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_sysmutex.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/thread/pthread/SDL_syscond.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_syscond.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_syscond.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/thread/pthread/SDL_systls.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_systls.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_systls.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/thread/pthread/SDL_syssem.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_syssem.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/thread/pthread/SDL_syssem.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/misc/unix/SDL_sysurl.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/misc/unix/SDL_sysurl.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/misc/unix/SDL_sysurl.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/power/linux/SDL_syspower.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/power/linux/SDL_syspower.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/power/linux/SDL_syspower.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/locale/unix/SDL_syslocale.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/locale/unix/SDL_syslocale.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/locale/unix/SDL_syslocale.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/filesystem/unix/SDL_sysfilesystem.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/filesystem/unix/SDL_sysfilesystem.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/filesystem/unix/SDL_sysfilesystem.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/timer/unix/SDL_systimer.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/timer/unix/SDL_systimer.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/timer/unix/SDL_systimer.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -o dep/SDL/CMakeFiles/SDL2-static.dir/src/sensor/dummy/SDL_dummysensor.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/sensor/dummy/SDL_dummysensor.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/sensor/dummy/SDL_dummysensor.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/SDL.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/SDL_assert.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_assert.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_assert.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/SDL_dataqueue.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_dataqueue.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_dataqueue.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/SDL_error.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_error.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_error.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/SDL_hints.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_hints.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_hints.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/SDL_log.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/SDL_log.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/SDL_log.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/atomic/SDL_atomic.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_atomic.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_atomic.c"
},
{
"directory": "/home/dan/CLionProjects/fractals/build",
"command": "/usr/bin/cc -DSDL2_EXPORTS -DUSING_GENERATED_CONFIG_H -Idep/SDL/include -I../dep/SDL/include -idirafter \"/home/dan/CLionProjects/fractals/dep/SDL/src/video/khronos\" -DHAVE_LINUX_VERSION_H -D_REENTRANT -I/usr/include -msse3 -msse2 -msse -m3dnow -mmmx -fdiagnostics-color=always -Wshadow -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -fno-strict-aliasing -Wall -O3 -DNDEBUG -fPIC -o dep/SDL/CMakeFiles/SDL2.dir/src/atomic/SDL_spinlock.c.o -c /home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_spinlock.c",
"file": "/home/dan/CLionProjects/fractals/dep/SDL/src/atomic/SDL_spinlock.c"