QT3Dstudio
-
Hello, After installation of QT5.9.2 and Qt3Dstudio with qt maintenance tool I can not compile example because with import QtStudio3D 1.0 in main.qml I got no such file or directory...
Anyone know why?...[Duplicate of https://forum.qt.io/topic/84211/qtstudio3d ~kshegunov]
-
Hi, I found the problem.
in the build instruction they say:
Download precompiled boost binaries from www.boost.org and extract them to:
<path to repo root>/src/3rdparty/boost/1.65.0in fact, studio need the boost_1_65_0-msvc-14.0-64 version.
It have to be install with changing directory to <path to repo root>/src/3rdparty/boost/1.65.0After that, following the commonplatform.pri file, I saw the the boost dir was BOOSTDIR = $$THIRDPARTY_DIR/boost/1.65.0/msvc14/lib64
but it's not what we have inside boost installation, we have to create new folder called msvc14 and rename the folder who contain libboost_signals-vc140-mt-gd-1_65 to "lib64" and move this rename folder inside the msvc14 folder.
The other way is to change the bootdir in pri files but same libs are called many time, that why I make choice to change boost folder structure