Re: [Interest] Qt3D : QSceneLoader - determining scene level geometry bounding box

2022-08-05 Thread Nicholas Yue
Any insight ? On Wed, 3 Aug 2022 at 15:44, Nicholas Yue wrote: > I have the following code > > ``` > void SceneWalker::walkEntity(Qt3DCore::QEntity *e, int depth) > { > Qt3DCore::QNodeVector nodes = e->childNodes(); > for (int i = 0; i < nodes.count(); ++i) { > Qt3DCore::QNode *n

Re: [Interest] Official linuxdeployqt ?

2022-08-05 Thread Scott Bloom
Unfortunately both of these solutions (runtime dependencies and static build) only solve the staticly bound dynamically loaded DLLs The runtime wont solve plugins, and the deployment tools for windows a not only does the runtime dlls, it also does translations, and other dynamically bound dlls

Re: [Interest] Official linuxdeployqt ?

2022-08-05 Thread Cristian Adam
Hi, CMake has since version 3.16 an extension for its file command, namely GET_RUNTIME_DEPENDENCIES. I used it for Qt Creator to deploy all dependencies on Windows, Linux, macOS from CMake. As it turns out Qt Creat