openbabel 0.5.4

Rust bindings to cheminformatics toolbox OpenBabel
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
[
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/alias.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/alias.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/alias.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/atom.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/atom.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/atom.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/base.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/base.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/base.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/bitvec.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/bitvec.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/bitvec.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/bond.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/bond.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/bond.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/bondtyper.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/bondtyper.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/bondtyper.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/builder.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/builder.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/builder.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/canon.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/canon.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/canon.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/chains.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/chains.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/chains.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/chargemodel.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/chargemodel.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/chargemodel.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/data.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/data.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/data.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/data_utilities.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/data_utilities.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/data_utilities.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/descriptor.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptor.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptor.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/elements.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/elements.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/elements.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/fingerprint.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprint.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprint.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/forcefield.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefield.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefield.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/format.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/format.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/format.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/generic.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/generic.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/generic.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/graphsym.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/graphsym.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/graphsym.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/grid.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/grid.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/grid.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/griddata.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/griddata.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/griddata.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/isomorphism.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/isomorphism.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/isomorphism.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/kekulize.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/kekulize.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/kekulize.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/locale.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/locale.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/locale.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/matrix.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/matrix.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/matrix.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/mcdlutil.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/mcdlutil.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/mcdlutil.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/molchrg.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/molchrg.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/molchrg.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/mol.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/mol.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/mol.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/obconversion.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obconversion.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obconversion.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/oberror.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/oberror.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/oberror.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/obfunctions.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obfunctions.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obfunctions.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/obiter.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obiter.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obiter.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/obutil.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obutil.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obutil.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/op.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/op.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/op.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/parsmart.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/parsmart.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/parsmart.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/patty.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/patty.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/patty.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/phmodel.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/phmodel.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/phmodel.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/plugin.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/plugin.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/plugin.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/pointgroup.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/pointgroup.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/pointgroup.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/query.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/query.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/query.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/rand.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/rand.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/rand.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/reactionfacade.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/reactionfacade.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/reactionfacade.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/residue.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/residue.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/residue.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/ring.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ring.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ring.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/rotamer.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/rotamer.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/rotamer.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/rotor.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/rotor.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/rotor.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/spectrophore.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/spectrophore.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/spectrophore.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/tautomer.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/tautomer.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/tautomer.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/tokenst.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/tokenst.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/tokenst.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/transform.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/transform.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/transform.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/typer.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/typer.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/typer.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/obmolecformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obmolecformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/obmolecformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/conformersearch.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/conformersearch.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/conformersearch.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/confsearch.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/confsearch.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/confsearch.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/distgeom.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/distgeom.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/distgeom.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/dlhandler_unix.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/dlhandler_unix.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/dlhandler_unix.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/depict/depict.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/depict.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/depict.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/depict/svgpainter.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/svgpainter.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/svgpainter.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/math/matrix3x3.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/matrix3x3.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/matrix3x3.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/math/spacegroup.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/spacegroup.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/spacegroup.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/math/transform3d.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/transform3d.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/transform3d.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/math/vector3.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/vector3.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/vector3.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/math/align.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/align.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/math/align.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/stereo.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/stereo.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/stereo.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/tetranonplanar.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/tetranonplanar.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/tetranonplanar.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/tetraplanar.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/tetraplanar.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/tetraplanar.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/squareplanar.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/squareplanar.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/squareplanar.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/cistrans.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/cistrans.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/cistrans.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/tetrahedral.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/tetrahedral.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/tetrahedral.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/perception.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/perception.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/perception.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/facade.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/facade.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/facade.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMAKE_OBDLL -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/openbabel.dir/stereo/gen3dstereohelper.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/gen3dstereohelper.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/stereo/gen3dstereohelper.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_descriptors_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_descriptors.dir/descriptors/cansmidescriptor.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/cansmidescriptor.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/cansmidescriptor.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_descriptors_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_descriptors.dir/descriptors/cmpdfilter.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/cmpdfilter.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/cmpdfilter.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_descriptors_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_descriptors.dir/descriptors/groupcontrib.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/groupcontrib.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/groupcontrib.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_descriptors_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_descriptors.dir/descriptors/filters.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/filters.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/filters.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_descriptors_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_descriptors.dir/descriptors/inchidescriptor.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/inchidescriptor.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/inchidescriptor.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_descriptors_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_descriptors.dir/descriptors/smartsdescriptors.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/smartsdescriptors.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/descriptors/smartsdescriptors.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_fingerprints_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_fingerprints.dir/fingerprints/finger2.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprints/finger2.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprints/finger2.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_fingerprints_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_fingerprints.dir/fingerprints/finger3.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprints/finger3.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprints/finger3.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_fingerprints_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_fingerprints.dir/fingerprints/fingerecfp.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprints/fingerecfp.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/fingerprints/fingerecfp.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_forcefields_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_forcefields.dir/forcefields/forcefieldgaff.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefieldgaff.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefieldgaff.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_forcefields_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_forcefields.dir/forcefields/forcefieldghemical.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefieldghemical.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefieldghemical.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_forcefields_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_forcefields.dir/forcefields/forcefieldmmff94.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefieldmmff94.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefieldmmff94.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_forcefields_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_forcefields.dir/forcefields/forcefielduff.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefielduff.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/forcefields/forcefielduff.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/addfilename.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addfilename.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addfilename.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/addinindex.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addinindex.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addinindex.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/addpolarh.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addpolarh.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addpolarh.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/addnonpolarh.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addnonpolarh.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/addnonpolarh.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/canonical.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/canonical.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/canonical.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/changecell.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/changecell.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/changecell.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/delpolarh.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/delpolarh.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/delpolarh.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/delnonpolarh.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/delnonpolarh.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/delnonpolarh.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/gen2D.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/gen2D.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/gen2D.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/fillUC.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/fillUC.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/fillUC.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/forcefield.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/forcefield.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/forcefield.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/gen3d.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/gen3d.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/gen3d.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/largest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/largest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/largest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/loader.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/loader.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/loader.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/neutralize.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/neutralize.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/neutralize.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/opsplit.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opsplit.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opsplit.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/optransform.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/optransform.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/optransform.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/partialcharges.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/partialcharges.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/partialcharges.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/readconformers.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/readconformers.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/readconformers.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/sort.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/sort.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/sort.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/opisomorph.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opisomorph.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opisomorph.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/ophighlight.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/ophighlight.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/ophighlight.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/xout.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/xout.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/xout.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/conformer.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/conformer.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/conformer.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/opalign.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opalign.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opalign.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_ops_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_ops.dir/ops/opconfab.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opconfab.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/opconfab.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/eem.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/eem.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/eem.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/gasteiger.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/gasteiger.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/gasteiger.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/none.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/none.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/none.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/mmff94.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/mmff94.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/mmff94.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/fromfile.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/fromfile.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/fromfile.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/eqeq.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/eqeq.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/eqeq.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/qeq.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/qeq.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/qeq.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dplugin_charges_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/plugin_charges.dir/charges/qtpie.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/qtpie.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/charges/qtpie.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dsmilesformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/smilesformat.dir/smilesformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/smilesformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/smilesformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmdlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mdlformat.dir/mdlformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mdlformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mdlformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmol2format_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mol2format.dir/mol2format.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mol2format.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mol2format.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpdbformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pdbformat.dir/pdbformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pdbformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pdbformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dinchiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/inchiformat.dir/inchiformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/inchiformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/inchiformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dinchiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/inchiformat.dir/getinchi.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/getinchi.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/getinchi.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dinchiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/inchiformat.dir/__/ops/unique.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/unique.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/ops/unique.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dasciiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/asciiformat.dir/asciiformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/asciiformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/asciiformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dasciiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/asciiformat.dir/__/depict/asciipainter.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/asciipainter.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/asciipainter.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcopyformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/copyformat.dir/copyformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/copyformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/copyformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMNAformat_EXPORTS -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/MNAformat.dir/MNAformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/MNAformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/MNAformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmolreport_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/molreport.dir/molreport.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/molreport.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/molreport.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dnulformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/nulformat.dir/nulformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/nulformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/nulformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpainterformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/painterformat.dir/painterformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/painterformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/painterformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpainterformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/painterformat.dir/__/depict/commandpainter.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/commandpainter.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/commandpainter.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpovrayformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/povrayformat.dir/povrayformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/povrayformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/povrayformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dreportformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/reportformat.dir/reportformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/reportformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/reportformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dsvgformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/svgformat.dir/svgformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/svgformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/svgformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dtextformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/textformat.dir/textformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/textformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/textformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dtitleformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/titleformat.dir/titleformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/titleformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/titleformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dconfabreport_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/confabreport.dir/confabreport.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/confabreport.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/confabreport.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpngformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pngformat.dir/pngformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pngformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pngformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dacesformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/acesformat.dir/acesformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/acesformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/acesformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dabinitformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/abinitformat.dir/abinitformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/abinitformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/abinitformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dadfformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/adfformat.dir/adfformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/adfformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/adfformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Daoforceformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/aoforceformat.dir/aoforceformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/aoforceformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/aoforceformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcastepformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/castepformat.dir/castepformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/castepformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/castepformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcrystal09format_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/crystal09format.dir/crystal09format.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/crystal09format.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/crystal09format.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Ddaltonformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/daltonformat.dir/daltonformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/daltonformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/daltonformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Ddmolformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/dmolformat.dir/dmolformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/dmolformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/dmolformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfchkformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/fchkformat.dir/fchkformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fchkformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fchkformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfhiaimsformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/fhiaimsformat.dir/fhiaimsformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fhiaimsformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fhiaimsformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgamessformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/gamessformat.dir/gamessformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gamessformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gamessformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgaussformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/gaussformat.dir/gaussformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gaussformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gaussformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgausscubeformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/gausscubeformat.dir/gausscubeformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gausscubeformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gausscubeformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgausszmatformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/gausszmatformat.dir/gausszmatformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gausszmatformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gausszmatformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgulpformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/gulpformat.dir/gulpformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gulpformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gulpformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dhinformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/hinformat.dir/hinformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/hinformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/hinformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Djaguarformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/jaguarformat.dir/jaguarformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/jaguarformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/jaguarformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmolproformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/molproformat.dir/molproformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/molproformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/molproformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmopacformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mopacformat.dir/mopacformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mopacformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mopacformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dnwchemformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/nwchemformat.dir/nwchemformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/nwchemformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/nwchemformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpwscfformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pwscfformat.dir/pwscfformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pwscfformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pwscfformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dqchemformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/qchemformat.dir/qchemformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/qchemformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/qchemformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dsiestaformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/siestaformat.dir/siestaformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/siestaformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/siestaformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dturbomoleformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/turbomoleformat.dir/turbomoleformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/turbomoleformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/turbomoleformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dvaspformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/vaspformat.dir/vaspformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/vaspformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/vaspformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dxsfformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/xsfformat.dir/xsfformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xsfformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xsfformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dzindoformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/zindoformat.dir/zindoformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/zindoformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/zindoformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmaeformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/maeformat.dir/maeformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/maeformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/maeformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgamessukformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/gamessukformat.dir/gamessukformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gamessukformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gamessukformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dorcaformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/orcaformat.dir/orcaformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/orcaformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/orcaformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DAPIInterface_EXPORTS -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/APIInterface.dir/APIInterface.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/APIInterface.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/APIInterface.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DCSRformat_EXPORTS -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/CSRformat.dir/CSRformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/CSRformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/CSRformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DPQSformat_EXPORTS -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/PQSformat.dir/PQSformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/PQSformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/PQSformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DMCDLformat_EXPORTS -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/MCDLformat.dir/MCDLformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/MCDLformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/MCDLformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dalchemyformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/alchemyformat.dir/alchemyformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/alchemyformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/alchemyformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dacrformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/acrformat.dir/acrformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/acrformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/acrformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Damberformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/amberformat.dir/amberformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/amberformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/amberformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dbalstformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/balstformat.dir/balstformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/balstformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/balstformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dbgfformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/bgfformat.dir/bgfformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/bgfformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/bgfformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dboxformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/boxformat.dir/boxformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/boxformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/boxformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcacaoformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cacaoformat.dir/cacaoformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cacaoformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cacaoformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcacheformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cacheformat.dir/cacheformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cacheformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cacheformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcarformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/carformat.dir/carformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/carformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/carformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcccformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cccformat.dir/cccformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cccformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cccformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dchem3dformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/chem3dformat.dir/chem3dformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chem3dformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chem3dformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dchemdrawct_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/chemdrawct.dir/chemdrawct.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemdrawct.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemdrawct.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dchemtoolformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/chemtoolformat.dir/chemtoolformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemtoolformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemtoolformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcifformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cifformat.dir/cifformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cifformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cifformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcofformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cofformat.dir/cofformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cofformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cofformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcrkformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/crkformat.dir/crkformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/crkformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/crkformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcssrformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cssrformat.dir/cssrformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cssrformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/cssrformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Ddlpolyformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/dlpolyformat.dir/dlpolyformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/dlpolyformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/dlpolyformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dexyzformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/exyzformat.dir/exyzformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/exyzformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/exyzformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfastsearchformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/fastsearchformat.dir/fastsearchformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fastsearchformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fastsearchformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfastaformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/fastaformat.dir/fastaformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fastaformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fastaformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfeatformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/featformat.dir/featformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/featformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/featformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfhformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/fhformat.dir/fhformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fhformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fhformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfingerprintformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/fingerprintformat.dir/fingerprintformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fingerprintformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fingerprintformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfpsformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/fpsformat.dir/fpsformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fpsformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/fpsformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dfreefracformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/freefracformat.dir/freefracformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/freefracformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/freefracformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dghemicalformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/ghemicalformat.dir/ghemicalformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/ghemicalformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/ghemicalformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgromos96format_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/gromos96format.dir/gromos96format.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gromos96format.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/gromos96format.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dgroformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/groformat.dir/groformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/groformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/groformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dlmpdatformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/lmpdatformat.dir/lmpdatformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/lmpdatformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/lmpdatformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dlpmdformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/lpmdformat.dir/lpmdformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/lpmdformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/lpmdformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmdffformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mdffformat.dir/mdffformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mdffformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mdffformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmmcifformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mmcifformat.dir/mmcifformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mmcifformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mmcifformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmmodformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mmodformat.dir/mmodformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mmodformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mmodformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmoldenformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/moldenformat.dir/moldenformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/moldenformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/moldenformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmpdformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mpdformat.dir/mpdformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mpdformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mpdformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmpqcformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/mpqcformat.dir/mpqcformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mpqcformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/mpqcformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmsiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/msiformat.dir/msiformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/msiformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/msiformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dmsmsformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/msmsformat.dir/msmsformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/msmsformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/msmsformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dopendxformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/opendxformat.dir/opendxformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/opendxformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/opendxformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Doutformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/outformat.dir/outformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/outformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/outformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpcmodelformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pcmodelformat.dir/pcmodelformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pcmodelformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pcmodelformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpdbqtformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pdbqtformat.dir/pdbqtformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pdbqtformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pdbqtformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpointcloudformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pointcloudformat.dir/pointcloudformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pointcloudformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pointcloudformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dposformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/posformat.dir/posformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/posformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/posformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpqrformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pqrformat.dir/pqrformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pqrformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/pqrformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dshelxformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/shelxformat.dir/shelxformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/shelxformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/shelxformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dsmileyformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/smileyformat.dir/smileyformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/smileyformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/smileyformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dstlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/stlformat.dir/stlformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/stlformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/stlformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dthermoformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/thermoformat.dir/thermoformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/thermoformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/thermoformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dtinkerformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/tinkerformat.dir/tinkerformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/tinkerformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/tinkerformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dunichemformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/unichemformat.dir/unichemformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/unichemformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/unichemformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dviewmolformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/viewmolformat.dir/viewmolformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/viewmolformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/viewmolformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dwlnformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/wlnformat.dir/wlnformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/wlnformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/wlnformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dwlnformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/wlnformat.dir/wln-nextmove.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/wln-nextmove.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/wln-nextmove.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dxedformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/xedformat.dir/xedformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xedformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xedformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dxyzformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/xyzformat.dir/xyzformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xyzformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xyzformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dyasaraformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/yasaraformat.dir/yasaraformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/yasaraformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/yasaraformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Drxnformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/rxnformat.dir/rxnformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/rxnformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/rxnformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dchemdrawcdx_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/chemdrawcdx.dir/chemdrawcdx.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemdrawcdx.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemdrawcdx.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dchemkinformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/chemkinformat.dir/chemkinformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemkinformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/chemkinformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Drinchiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/rinchiformat.dir/rinchiformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/rinchiformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/rinchiformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Drsmiformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/rsmiformat.dir/rsmiformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/rsmiformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/rsmiformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpng2format_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/png2format.dir/png2format.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/png2format.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/png2format.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpng2format_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/png2format.dir/__/depict/cairopainter.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/cairopainter.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/depict/cairopainter.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcdxmlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cdxmlformat.dir/xml/cdxmlformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/cdxmlformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/cdxmlformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcdxmlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cdxmlformat.dir/xml/xml.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcmlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cmlformat.dir/xml/cmlformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/cmlformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/cmlformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcmlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cmlformat.dir/xml/xml.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpubchem_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pubchem.dir/xml/pubchem.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/pubchem.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/pubchem.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpubchem_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pubchem.dir/xml/xml.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dxmlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/xmlformat.dir/xml/xmlformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xmlformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xmlformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dxmlformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/xmlformat.dir/xml/xml.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcmlreactformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cmlreactformat.dir/xml/cmlreactformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/cmlreactformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/cmlreactformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dcmlreactformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/cmlreactformat.dir/xml/xml.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/xml/xml.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dchemdoodlejsonformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/chemdoodlejsonformat.dir/json/chemdoodlejsonformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/json/chemdoodlejsonformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/json/chemdoodlejsonformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats",
  "command": "/usr/bin/clang++ -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -Dpubchemjsonformat_EXPORTS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -I/Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk/usr/include/libxml2 -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -std=gnu++11 -o CMakeFiles/pubchemjsonformat.dir/json/pubchemjsonformat.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/json/pubchemjsonformat.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/json/pubchemjsonformat.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichi_bns.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichi_bns.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichi_bns.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichi_io.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichi_io.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichi_io.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichican2.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichican2.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichican2.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichicano.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichicano.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichicano.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichicans.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichicans.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichicans.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiisot.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiisot.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiisot.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichilnct.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichilnct.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichilnct.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichimak2.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimak2.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimak2.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichimake.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimake.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimake.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichimap1.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimap1.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimap1.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichimap2.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimap2.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimap2.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichimap4.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimap4.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichimap4.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichinorm.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichinorm.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichinorm.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiparm.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiparm.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiparm.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiprt1.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiprt1.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiprt1.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiprt2.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiprt2.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiprt2.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiprt3.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiprt3.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiprt3.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiqueu.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiqueu.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiqueu.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiread.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiread.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiread.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichiring.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiring.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichiring.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichirvr1.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr1.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr1.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichirvr2.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr2.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr2.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichirvr3.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr3.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr3.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichirvr4.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr4.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr4.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichirvr5.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr5.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr5.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichirvr6.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr6.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr6.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichirvr7.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr7.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichirvr7.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichisort.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichisort.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichisort.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichister.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichister.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichister.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ichitaut.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichitaut.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ichitaut.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ikey_base26.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ikey_base26.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ikey_base26.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/ikey_dll.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ikey_dll.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/ikey_dll.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/inchi_dll.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/inchi_dll_a.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll_a.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll_a.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/inchi_dll_a2.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll_a2.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll_a2.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/inchi_dll_main.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll_main.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/inchi_dll_main.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/runichi.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/runichi.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/runichi.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/sha2.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/sha2.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/sha2.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/strutil.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/strutil.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/strutil.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/src/formats/libinchi",
  "command": "/usr/bin/clang -DBUILD_LINK_AS_DLL -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -D_USRDLL -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/opt/homebrew/include/cairo -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include/inchi -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIC -w -o CMakeFiles/inchi.dir/util.c.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/util.c",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/libinchi/util.c"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obabel.dir/obabel.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obabel.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obabel.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obconformer.dir/obconformer.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obconformer.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obconformer.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obenergy.dir/obenergy.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obenergy.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obenergy.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obfit.dir/obfit.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obfit.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obfit.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obfitall.dir/obfitall.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obfitall.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obfitall.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obgen.dir/obgen.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obgen.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obgen.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obminimize.dir/obminimize.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obminimize.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obminimize.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obmm.dir/obmm.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obmm.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obmm.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obprobe.dir/obprobe.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obprobe.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obprobe.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obprop.dir/obprop.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obprop.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obprop.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obrotamer.dir/obrotamer.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obrotamer.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obrotamer.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obrotate.dir/obrotate.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obrotate.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obrotate.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obsym.dir/obsym.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obsym.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obsym.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obtautomer.dir/obtautomer.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obtautomer.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obtautomer.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obthermo.dir/obthermo.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obthermo.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obthermo.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obdistgen.dir/obdistgen.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obdistgen.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obdistgen.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obgrep.dir/obgrep.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obgrep.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obgrep.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obspectrophore.dir/obspectrophore.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obspectrophore.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obspectrophore.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/tools",
  "command": "/usr/bin/clang++ -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/obrms.dir/obrms.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obrms.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/tools/obrms.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/test_runner.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/build/test/test_runner.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test/test_runner.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/aligntest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/aligntest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/aligntest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/aliastest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/aliastest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/aliastest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/automorphismtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/automorphismtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/automorphismtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/buildertest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/buildertest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/buildertest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/canonconsistenttest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/canonconsistenttest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/canonconsistenttest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/canonfragmenttest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/canonfragmenttest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/canonfragmenttest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/canonstabletest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/canonstabletest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/canonstabletest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/carspacegrouptest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/carspacegrouptest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/carspacegrouptest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/cifspacegrouptest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cifspacegrouptest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cifspacegrouptest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/cistranstest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cistranstest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cistranstest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/conversiontest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/conversiontest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/conversiontest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/graphsymtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/graphsymtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/graphsymtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/gziptest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/gziptest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/gziptest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/addhtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/addhtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/addhtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/implicitHtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/implicitHtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/implicitHtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/lssrtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/lssrtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/lssrtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/isomorphismtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/isomorphismtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/isomorphismtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/multicmltest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/multicmltest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/multicmltest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/periodictest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/periodictest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/periodictest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/regressionstest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/regressionstest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/regressionstest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/rotortest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/rotortest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/rotortest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/shuffletest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/shuffletest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/shuffletest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/smilestest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smilestest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smilestest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/spectrophoretest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/spectrophoretest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/spectrophoretest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/squareplanartest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/squareplanartest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/squareplanartest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/stereotest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/stereotest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/stereotest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/stereoperceptiontest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/stereoperceptiontest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/stereoperceptiontest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/tautomertest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tautomertest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tautomertest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/tetrahedraltest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tetrahedraltest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tetrahedraltest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/tetranonplanartest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tetranonplanartest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tetranonplanartest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/tetraplanartest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tetraplanartest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/tetraplanartest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/uniqueidtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/uniqueidtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/uniqueidtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/maereadertest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/maereadertest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/maereadertest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/aromatest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/aromatest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/aromatest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/atom.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/atom.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/atom.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/bond.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/bond.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/bond.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/cansmi.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cansmi.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cansmi.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/charge_mmff94.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/charge_mmff94.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/charge_mmff94.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/charge_gasteiger.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/charge_gasteiger.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/charge_gasteiger.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/conversion.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/conversion.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/conversion.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/datatest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/datatest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/datatest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/ffgaff.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffgaff.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffgaff.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/ffghemical.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffghemical.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffghemical.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/ffmmff94.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffmmff94.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffmmff94.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/ffuff.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffuff.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ffuff.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/formalcharge.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/formalcharge.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/formalcharge.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/format.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/format.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/format.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/formula.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/formula.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/formula.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/internalcoord.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/internalcoord.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/internalcoord.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/invalidsmarts.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/invalidsmarts.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/invalidsmarts.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/invalidsmiles.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/invalidsmiles.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/invalidsmiles.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/iterators.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/iterators.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/iterators.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/logp_psa.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/logp_psa.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/logp_psa.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/math.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/math.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/math.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/mol.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/mol.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/mol.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/pdbreadfile.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/pdbreadfile.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/pdbreadfile.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/phmodel.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/phmodel.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/phmodel.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/residue.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/residue.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/residue.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/ringtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ringtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/ringtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/smartstest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smartstest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smartstest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/smartsparse.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smartsparse.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smartsparse.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/smilesmatch.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smilesmatch.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/smilesmatch.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/unitcell.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/unitcell.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/unitcell.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/cmlreadfile.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cmlreadfile.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/cmlreadfile.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_runner.dir/obtest.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/obtest.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/obtest.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_inchiwrite.dir/inchiwrite.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/inchiwrite.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/inchiwrite.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/test_inchiwrite.dir/__/src/formats/getinchi.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/getinchi.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/src/formats/getinchi.cpp"
},
{
  "directory": "/Users/qw/Documents/dev-chiral/openbabel-rust/build/test",
  "command": "/usr/bin/clang++ -DFORMATDIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/build/lib//\\\" -DHAVE_EIGEN -DHAVE_EIGEN3 -DHAVE_LIBZ -DHAVE_RAPIDJSON -DHAVE_SHARED_POINTER -DTESTDATADIR=\\\"/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/files/\\\" -DUSING_DYNAMIC_LIBS -I/opt/homebrew/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/build/data -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/include -I/opt/homebrew/include/eigen3 -I/usr/local/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/external/rapidjson-1.1.0/include -I/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test -g -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX12.0.sdk -fPIE -std=gnu++11 -o CMakeFiles/roundtrip.dir/roundtrip.cpp.o -c /Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/roundtrip.cpp",
  "file": "/Users/qw/Documents/dev-chiral/openbabel-rust/openbabel-sys/openbabel/test/roundtrip.cpp"
}
]