Build qtdatavis3d from sources
-
I try to build qtdatavis3d from sources on Linux Debian 9, gcc 6.3.0.
I got the file qtdatavis3d-5.11.zip from https://github.com/qt/qtdatavis3d/tree/5.11. Then run:
unzip qtdatavis3d-5.11.zip cd qtdatavis3d-5.11 qmake make -j 4
Then I got next errors:
In file included from engine/abstract3dcontroller_p.h:44:0, from engine/abstract3drenderer_p.h:48, from engine/abstract3drenderer.cpp:30: axis/qabstract3daxis.h:33:58: fatal error: QtDataVisualization/qdatavisualizationglobal.h: No such file or directory #include <QtDataVisualization/qdatavisualizationglobal.h>
I cannot understand, what is wrong? Path 'include/QtDataVisualization/' contains only a single file QtDataVisualizationDepends, but the compiler tries to find headers there (O_o)
-
I try to build qtdatavis3d from sources on Linux Debian 9, gcc 6.3.0.
I got the file qtdatavis3d-5.11.zip from https://github.com/qt/qtdatavis3d/tree/5.11. Then run:
unzip qtdatavis3d-5.11.zip cd qtdatavis3d-5.11 qmake make -j 4
Then I got next errors:
In file included from engine/abstract3dcontroller_p.h:44:0, from engine/abstract3drenderer_p.h:48, from engine/abstract3drenderer.cpp:30: axis/qabstract3daxis.h:33:58: fatal error: QtDataVisualization/qdatavisualizationglobal.h: No such file or directory #include <QtDataVisualization/qdatavisualizationglobal.h>
I cannot understand, what is wrong? Path 'include/QtDataVisualization/' contains only a single file QtDataVisualizationDepends, but the compiler tries to find headers there (O_o)
Hi,
Don't use the zip file generated by GitHub. Either clone the repository and switch to the adequate tag or download the sources from the Qt Company's servers.
-