I followed the instructions on ./docs/build-osx.md
but make
command results in the following error:
0qt/trafficgraphwidget.cpp:55:13: error: member access into incomplete type 'QPainterPath'
1 path.moveTo(x, YMARGIN + h);
2 ^
3/usr/local/Cellar/qt/5.15.0/lib/QtGui.framework/Headers/qmatrix.h:54:7: note: forward declaration of 'QPainterPath'
4class QPainterPath;
5 ^
6qt/trafficgraphwidget.cpp:59:17: error: member access into incomplete type 'QPainterPath'
7 path.lineTo(x, y);
8 ^
9/usr/local/Cellar/qt/5.15.0/lib/QtGui.framework/Headers/qmatrix.h:54:7: note: forward declaration of 'QPainterPath'
10class QPainterPath;
11 ^
12qt/trafficgraphwidget.cpp:61:13: error: member access into incomplete type 'QPainterPath'
13 path.lineTo(x, YMARGIN + h);
14 ^
15/usr/local/Cellar/qt/5.15.0/lib/QtGui.framework/Headers/qmatrix.h:54:7: note: forward declaration of 'QPainterPath'
16class QPainterPath;
17 ^
18qt/trafficgraphwidget.cpp:109:22: error: variable has incomplete type 'QPainterPath'
19 QPainterPath p;
20 ^
21/usr/local/Cellar/qt/5.15.0/lib/QtGui.framework/Headers/qmatrix.h:54:7: note: forward declaration of 'QPainterPath'
22class QPainterPath;
23 ^
24qt/trafficgraphwidget.cpp:116:22: error: variable has incomplete type 'QPainterPath'
25 QPainterPath p;
26 ^
27/usr/local/Cellar/qt/5.15.0/lib/QtGui.framework/Headers/qmatrix.h:54:7: note: forward declaration of 'QPainterPath'
28class QPainterPath;
29 ^
305 errors generated.
31make[2]: *** [qt/libbitcoinqt_a-trafficgraphwidget.o] Error 1
32make[1]: *** [all-recursive] Error 1